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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #1a1a1a;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-flow {
    background-color: #ffffff;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.hero-image {
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

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

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

.text-block {
    margin-bottom: 3rem;
}

.text-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
}

.text-block p {
    margin-bottom: 1.4rem;
}

.text-block ul,
.text-block ol {
    margin-bottom: 1.4rem;
    margin-left: 2rem;
}

.text-block li {
    margin-bottom: 0.7rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.inline-cta {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.cta-link {
    font-size: 1.1rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    transition: color 0.2s;
}

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

.image-break {
    margin: 3.5rem 0;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.image-break figcaption {
    text-align: center;
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.8rem;
    font-style: italic;
}

.pull-quote {
    margin: 3.5rem 0;
    padding: 2rem 2.5rem;
    background-color: #f8f8f8;
    border-left: 4px solid #333;
}

.pull-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.pull-quote cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 3px solid #666;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.8rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #333;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enrollment-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.final-cta {
    margin: 4rem 0 2rem;
    text-align: center;
}

.cta-button-large {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-large:hover {
    background-color: #333;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #666;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #555;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    border-top: 2px solid #e0e0e0;
    padding-top: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: disc;
}

.service-features li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-left: 4px solid #0066cc;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

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

.enrollment-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
}

.enrollment-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-item p {
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content {
    max-width: 820px;
}

.legal-content .text-block {
    margin-bottom: 2.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    list-style: disc;
}

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

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

.thanks-content {
    margin-top: 2rem;
}

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-box {
    background-color: #f0f7ff;
    border: 1px solid #b3d9ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-box p {
    margin-bottom: 0;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
    background-color: #0052a3;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header-editorial h1 {
        font-size: 1.8rem;
    }

    .text-block h2 {
        font-size: 1.6rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    body {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}
