/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #2c5282;
    border-bottom-color: #2c5282;
}

/* Split-Screen Sections - Core Layout */
.hero-split,
.value-split,
.approach-split,
.trust-split,
.info-split,
.final-cta-split,
.page-header-split,
.service-detail-split,
.about-header-split,
.mission-split,
.approach-detail-split,
.expertise-split,
.cta-about-split,
.contact-header-split,
.contact-info-split,
.contact-approach-split,
.cta-contact-split,
.thanks-split,
.comparison-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.hero-content,
.value-content,
.approach-content,
.trust-content,
.info-content,
.final-cta-content,
.header-content,
.service-detail-content,
.about-header-content,
.mission-content,
.approach-detail-content,
.expertise-content,
.cta-about-content,
.contact-header-content,
.contact-details,
.contact-approach-content,
.cta-contact-content,
.thanks-content {
    flex: 1;
    min-width: 300px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual,
.value-visual,
.approach-visual,
.trust-visual,
.form-container,
.final-cta-visual,
.header-visual,
.service-detail-visual,
.about-header-visual,
.mission-visual,
.approach-detail-visual,
.expertise-visual,
.cta-about-visual,
.contact-header-visual,
.contact-map,
.contact-approach-visual,
.cta-contact-visual,
.thanks-visual {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual img,
.value-visual img,
.approach-visual img,
.trust-visual img,
.final-cta-visual img,
.header-visual img,
.service-detail-visual img,
.about-header-visual img,
.mission-visual img,
.approach-detail-visual img,
.expertise-visual img,
.cta-about-visual img,
.contact-header-visual img,
.contact-map img,
.contact-approach-visual img,
.cta-contact-visual img,
.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reverse Layout */
.reverse {
    flex-direction: row-reverse;
}

/* Hero Section */
.hero-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 600px;
}

.hero-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Value Section */
.value-content h2,
.approach-content h2,
.trust-content h2,
.info-content h2,
.final-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.value-content p,
.approach-content p,
.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

/* Services Highlight */
.services-highlight {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    text-align: center;
}

.services-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c5282;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #2a4365;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}

/* Form Section */
.form-container {
    background-color: #ffffff;
    padding: 4rem 3rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #5a67d8;
}

/* CTA Buttons */
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button {
    background-color: #ffffff;
    color: #667eea;
}

.cta-button:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary {
    background-color: #2c5282;
    color: #ffffff;
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background-color: #2a4365;
}

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.25rem;
}

.cta-link:hover {
    color: #5a67d8;
    border-bottom-color: #5a67d8;
}

/* Service Detail Pages */
.service-detail-split {
    min-height: 600px;
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 1.125rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-price-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #718096;
    font-size: 0.95rem;
}

/* Additional Services */
.additional-services {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.additional-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.additional-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-top: 4px solid #667eea;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Timeline */
.timeline-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 700;
}

.timeline-split {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
    font-weight: 700;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Page */
.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
    font-weight: 700;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.map-note {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f7fafc;
    color: #4a5568;
    font-size: 0.95rem;
    text-align: center;
}

/* FAQ */
.faq-contact {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.faq-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 550px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.submission-summary {
    padding: 2rem;
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
    border-radius: 6px;
    margin: 2rem 0;
}

.submission-summary h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #276749;
    font-weight: 700;
}

.submission-summary p {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
    font-weight: 700;
}

.step-item p {
    color: #4a5568;
}

.thanks-cta {
    margin-top: 3rem;
    text-align: center;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #4a5568;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 800;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    list-style: disc;
    line-height: 1.7;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #5a67d8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: #2c5282;
}

.cookie-table td {
    color: #4a5568;
}

/* Comparison Section */
.comparison-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.comparison-text {
    margin-bottom: 2rem;
}

.comparison-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.comparison-cta {
    text-align: center;
}

/* Disclaimer */
.disclaimer {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 4rem 2rem 0;
    border-left: 4px solid #f6ad55;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e0;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .hero-content,
    .value-content,
    .approach-content,
    .trust-content,
    .info-content,
    .final-cta-content,
    .service-detail-content,
    .about-header-content,
    .mission-content,
    .approach-detail-content,
    .expertise-content,
    .cta-about-content,
    .contact-header-content,
    .contact-details,
    .contact-approach-content,
    .cta-contact-content,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .form-container {
        padding: 3rem 2rem;
    }

    .value-content h2,
    .approach-content h2,
    .trust-content h2,
    .info-content h2,
    .final-cta-content h2 {
        font-size: 1.875rem;
    }

    .services-highlight h2,
    .testimonials h2,
    .values-section h2,
    .timeline-section h2,
    .faq-contact h2 {
        font-size: 2rem;
    }

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}