* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-color: #d5d8dc;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.insight-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.insight-left {
    flex: 1;
    background-color: #ecf0f1;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-right h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 28px;
}

.insight-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.problem-amplification {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fef5e7;
    min-height: 450px;
}

.problem-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-content h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 24px;
}

.problem-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.problem-content a {
    color: #3498db;
    transition: color 0.3s ease;
}

.problem-content a:hover {
    color: #2980b9;
}

.problem-visual {
    flex: 1;
    background-color: #d5d8dc;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a252f;
}

.services-grid {
    display: flex;
    flex-direction: column;
}

.services-grid > div:not(.section-header) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.service-card {
    flex: 0 1 calc(50% - 16px);
    max-width: 600px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    color: #1a252f;
    padding: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    padding: 0 24px 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 24px 20px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #2980b9;
}

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 550px;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e8f8f5;
}

.trust-content h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.trust-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    flex: 1;
    min-width: 120px;
}

.metric-value {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #5a6c7d;
}

.trust-visual {
    flex: 1;
    background-color: #d5d8dc;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-inline {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 80px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.cta-section {
    background-color: #1a252f;
    padding: 100px 40px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 32px;
}

.form-section {
    max-width: 700px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d3d4;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.references-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.main-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.6;
}

.about-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px 60px;
    text-align: center;
}

.about-intro h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.story-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 34px;
    color: #1a252f;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 34px;
    color: #1a252f;
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    background-color: #d5d8dc;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 40px;
    color: #1a252f;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-numbers {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #e8f8f5;
}

.team-numbers h2 {
    font-size: 40px;
    color: #1a252f;
    text-align: center;
    margin-bottom: 60px;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-block {
    text-align: center;
    min-width: 150px;
}

.number-block .number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.number-block .label {
    font-size: 15px;
    color: #5a6c7d;
}

.cta-about {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 32px;
}

.services-intro {
    max-width: 900px;
    margin: 100px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 24px;
}

.services-intro p {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-detailed {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    min-height: 500px;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 34px;
    color: #1a252f;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-content li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.additional-services {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.additional-services h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 40px;
    text-align: center;
}

.additional-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.additional-item h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 16px;
}

.additional-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-small {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.form-cta {
    max-width: 900px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #e8f8f5;
    text-align: center;
}

.form-cta h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
}

.form-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-hero {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 24px;
}

.contact-hero p {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block h2 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 16px;
}

.info-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 8px;
}

.email-display {
    font-weight: 500;
    color: #2c3e50;
}

.email-note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

.note {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 12px;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-note {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.location-note h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 24px;
}

.location-note p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.form-reminder {
    max-width: 900px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #e8f8f5;
    text-align: center;
}

.form-reminder h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
}

.form-reminder p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-content {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    min-height: 600px;
}

.thanks-message {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-message h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-message ul {
    margin: 24px 0;
    padding-left: 24px;
}

.thanks-message li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.next-steps {
    font-size: 15px;
    color: #7f8c8d;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    margin: 28px 0;
}

.thanks-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: #34495e;
    color: #ffffff;
}

.gdpr-table th,
.cookies-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 14px;
    font-size: 15px;
    color: #5a6c7d;
    border-bottom: 1px solid #e0e0e0;
}

.gdpr-table tbody tr:hover,
.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .hero-split,
    .insight-section,
    .problem-amplification,
    .trust-section,
    .about-story,
    .approach-section,
    .service-detailed,
    .contact-details,
    .thanks-content {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .hero-content,
    .insight-right,
    .problem-content,
    .trust-content,
    .story-content,
    .approach-content,
    .service-content,
    .contact-info,
    .thanks-message {
        padding: 60px 40px;
    }

    .hero-visual,
    .insight-left,
    .problem-visual,
    .trust-visual,
    .story-visual,
    .approach-visual,
    .service-image,
    .contact-visual,
    .thanks-visual {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-content h1,
    .about-intro h1,
    .services-intro h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .testimonial-inline {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
    }
}