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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

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

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 70vh;
    max-height: 700px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 3rem 2rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: center;
}

.hero-text-overlay .lead-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.9;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-narrative,
.about-narrative,
.services-intro,
.contact-content,
.thanks-content,
.enrollment-form,
.final-encouragement {
    padding: 3rem 0;
}

.opening {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
    font-weight: 300;
}

.intro-narrative p,
.about-narrative p,
.services-intro p,
.contact-content p,
.thanks-content p,
.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.intro-narrative h2,
.about-narrative h2,
.services-intro h2,
.contact-content h2,
.thanks-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.content-image {
    margin: 3rem 0;
    width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.content-image figcaption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.inline-cta-box {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.inline-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-inline {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.testimonial-inline {
    background-color: #f0f7fb;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #16a085;
    font-style: italic;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.benefit-list,
.philosophy-list,
.transport-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li,
.philosophy-list li,
.transport-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before,
.philosophy-list li:before,
.transport-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
    font-size: 1.3rem;
}

.programs-reveal {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.program-cards {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.program-card.featured {
    border: 3px solid #f39c12;
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.savings {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.editorial-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.closing-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin: 3rem 0;
    text-align: center;
}

.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero .lead-text {
    font-size: 1.3rem;
    color: #555;
}

.cta-section {
    margin: 3rem 0;
    text-align: center;
}

.cta-link,
.cta-link-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s;
}

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

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

.cta-link-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

.services-detailed {
    padding: 3rem 0;
}

.service-block {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8f4f8;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.service-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-text ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
}

.service-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #95a5a6;
    margin-left: 1rem;
}

.savings-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-block {
    background-color: #fffbf0;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid #f39c12;
}

.comparison-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}

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

.comparison-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #f8f9fa;
}

.enrollment-cta {
    padding: 4rem 0;
    text-align: center;
}

.large-cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
    margin-top: 1.5rem;
}

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

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

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-item .email-display {
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Courier New', monospace;
}

.info-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.8rem;
    font-style: italic;
}

.faq-section {
    margin: 3rem 0;
}

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

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

.faq-item p {
    color: #555;
}

.visit-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
    margin: 2rem 0;
}

.contact-reminder {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-closing {
    text-align: center;
    margin: 3rem 0;
}

.thanks-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-box {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.tips-list {
    list-style: none;
    margin: 2rem 0;
}

.tips-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.legal-document .legal-content {
    padding: 3rem 0;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #7f8c8d;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

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

.cookies-table th {
    background-color: #34495e;
    color: #ffffff;
}

.cookies-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.url-display {
    font-family: 'Courier New', monospace;
    color: #555;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-disclaimer {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

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

@media (min-width: 768px) {
    .service-block {
        flex-direction: row;
        align-items: center;
    }

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

    .service-visual {
        width: 45%;
        height: 350px;
    }
}

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

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

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

    .hero-text-overlay .lead-text {
        font-size: 1.1rem;
    }

    .opening {
        font-size: 1.2rem;
    }

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem 0.5rem;
    }
}