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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 13px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.editorial-main {
    background-color: #ffffff;
}

.story-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-editorial {
    margin-bottom: 50px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 4px;
}

.intro-story,
.problem-section,
.solution-intro,
.trust-building,
.benefits-reveal,
.method-section,
.testimonials-section,
.services-intro,
.service-detailed,
.enrollment-section,
.what-to-expect,
.contact-content,
.thanks-content,
.preparation-section,
.while-you-wait,
.email-check,
.final-note,
.philosophy-section,
.team-section,
.methodology-section,
.impact-section,
.values-section,
.community-section,
.looking-forward,
.closing-section,
.disclaimer-section,
.legal-content {
    margin-bottom: 50px;
}

.narrow-content {
    width: 100%;
}

.narrow-content h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.narrow-content h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.narrow-content p {
    margin-bottom: 20px;
    color: #34495e;
}

.narrow-content ul,
.narrow-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.narrow-content li {
    margin-bottom: 10px;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

.inline-cta-section {
    margin: 60px 0;
    padding: 40px 30px;
    background-color: #ecf8f3;
    border-left: 4px solid #27ae60;
    text-align: center;
}

.inline-cta-section.secondary {
    background-color: #eef5fb;
    border-left-color: #3498db;
}

.cta-inline h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 25px;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.select-service {
    display: inline-block;
    padding: 14px 32px;
    margin: 8px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: #e67e22;
    color: #ffffff;
    width: 100%;
    max-width: 300px;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #95a5a6;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.benefit-list {
    margin-top: 30px;
}

.benefit-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.benefit-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.services-section {
    margin: 60px 0;
}

.service-form {
    margin-top: 30px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    padding: 30px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 0;
}

.age-range,
.age-indicator {
    font-size: 14px;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
    margin-bottom: 15px;
    display: block;
}

.duration {
    font-size: 15px;
    color: #555555;
    margin: 15px 0;
    font-family: 'Arial', sans-serif;
}

.price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0 0;
}

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

.select-service.selected {
    background-color: #27ae60;
}

.select-service.selected:hover {
    background-color: #229954;
}

.form-fields {
    margin-top: 40px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-fields h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.service-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-block:last-child {
    border-bottom: none;
}

.service-details {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.service-details p {
    margin-bottom: 10px;
}

.service-details strong {
    color: #1a1a1a;
}

.final-cta {
    margin: 60px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
}

.final-cta .cta-inline h3 {
    color: #ffffff;
    font-size: 30px;
}

.final-cta .cta-inline p {
    color: #f0f0f0;
}

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.contact-info-block {
    margin-bottom: 40px;
}

.address-text,
.email-text {
    font-size: 18px;
    line-height: 1.8;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 15px 0;
}

.note-text {
    font-size: 16px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.confirmation-box {
    padding: 30px;
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    margin-bottom: 40px;
    border-radius: 4px;
}

.confirmation-box h2 {
    margin-top: 0;
    color: #155724;
}

.confirmation-box ul {
    margin-left: 20px;
}

.selected-service-info {
    padding: 25px;
    background-color: #e7f3ff;
    border-left: 4px solid #3498db;
    margin-bottom: 40px;
    border-radius: 4px;
    display: none;
}

.selected-service-info h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

blockquote {
    margin: 30px 0;
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 19px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

    .narrow-content h3 {
        font-size: 21px;
    }

    body {
        font-size: 17px;
    }

    .nav-editorial {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .story-container {
        padding: 40px 20px;
    }

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

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

    .form-fields {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 18px;
    }

    body {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .cta-inline h3 {
        font-size: 22px;
    }

    .inline-cta-section {
        padding: 30px 20px;
    }

    .service-card {
        padding: 20px;
    }
}