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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
}

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

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d47a1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d47a1;
}

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

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.main-nav a {
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a73e8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: #2a2a2a;
    transition: all 0.3s ease;
}

/* Editorial Main Layout (Article-like structure) */
.editorial-main {
    background-color: #fafafa;
}

.story-flow {
    width: 100%;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    background-color: #ffffff;
    padding: 4rem 0 3rem;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-editorial h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.hero-inline-image {
    margin: 2rem 0;
    border-radius: 8px;
}

/* Page Header Editorial */
.page-header-editorial {
    background-color: #ffffff;
    padding: 3rem 0 2rem;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.content-section h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.75;
}

.content-inline-image {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.inline-cta {
    display: inline-block;
    color: #1a73e8;
    font-weight: 600;
    margin: 1rem 0;
    transition: transform 0.2s ease;
}

.inline-cta:hover {
    transform: translateX(4px);
}

/* Split Insight Section */
.split-insight {
    display: flex;
    gap: 3rem;
    padding: 4rem 1.5rem;
    background-color: #f5f7fa;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #2a2a2a;
    padding: 3.5rem 0;
}

.testimonial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    border: none;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Services Editorial */
.services-editorial {
    background-color: #fafafa;
    padding: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1a73e8;
}

.service-card h2,
.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.75rem;
}

.service-card p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.service-card ul {
    margin: 1.25rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a73e8;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background-color: #f5f7fa;
    padding: 4rem 0;
}

.cta-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a73e8;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.final-thought {
    background-color: #ffffff;
    padding: 3rem 0 4rem;
}

.final-thought p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

/* Contact Info Block */
.contact-info-block {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f7fa;
    border-radius: 8px;
}

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

.step {
    margin-bottom: 2rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.625rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: #2a2a2a;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.modal-price {
    font-size: 1.25rem;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Form */
.enrolment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-submit {
    padding: 1rem;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #b0b0b0;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 1rem 1.5rem;
    }

    .hero-editorial h1,
    .page-header-editorial h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.125rem;
    }

    .split-insight {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1,
    .page-header-editorial h1 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}