* {
    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: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
    white-space: nowrap;
}

.editorial-main {
    min-height: 80vh;
    padding: 3rem 1.5rem;
}

.story-article {
    max-width: 700px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-meta {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
}

.inline-image,
.inline-image-small {
    margin: 2.5rem 0;
    background-color: #e8e8e8;
}

.inline-image img,
.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-image img {
    max-height: 500px;
}

.inline-image-small img {
    max-height: 350px;
}

.story-content {
    font-size: 1.1rem;
    color: #34495e;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.story-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.story-content a {
    color: #27ae60;
    text-decoration: none;
    border-bottom: 1px solid rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.story-content a:hover {
    color: #229954;
    border-bottom-color: #229954;
}

.story-content ul,
.story-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    font-style: italic;
    color: #555;
}

blockquote p {
    margin-bottom: 0.5rem;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #7f8c8d;
}

.inline-cta {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #ecf9f2;
    border-radius: 8px;
    text-align: center;
}

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

.inline-cta p {
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-inline:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.program-card {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.program-card p {
    color: #555;
    margin-bottom: 1.2rem;
}

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

.duration {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.disclaimer-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #856404;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.closing-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 2.5rem;
    line-height: 1.6;
}

.final-cta {
    margin: 3rem 0;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.article-footer h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.8rem;
}

.references a {
    color: #27ae60;
    text-decoration: none;
    font-size: 0.95rem;
}

.references a:hover {
    text-decoration: underline;
}

.form-section {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    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: #27ae60;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

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

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

.thanks-page .success-message {
    text-align: center;
    margin: 2rem 0;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.step-content p {
    color: #555;
    margin: 0;
}

.important-note {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.important-note h3 {
    color: #856404;
    margin-bottom: 0.8rem;
}

.important-note p {
    color: #856404;
    margin: 0;
}

.while-you-wait {
    margin: 3rem 0;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.resource-link {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.resource-link h3 {
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.resource-link p {
    color: #555;
    margin: 0;
}

.testimonial-thanks {
    margin: 3rem 0;
}

.contact-reminder {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf9f2;
    border-radius: 8px;
    text-align: center;
}

.contact-reminder h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.contact-info-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-block h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-block p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info-block .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.location-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.location-note p {
    color: #2e7d32;
    margin: 0;
}

.faq-contact,
.program-faq {
    margin: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.business-info {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.legal-page .legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.legal-section p {
    margin-bottom: 1rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

.program-card.detailed {
    margin: 3rem 0;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.program-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #2c3e50;
}

.program-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.program-image {
    margin: 1.5rem 0;
    background-color: #e8e8e8;
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
    border-radius: 8px;
}

.program-description {
    margin-top: 1.5rem;
}

.program-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.program-description li {
    margin-bottom: 0.7rem;
    color: #555;
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .story-content {
        font-size: 1rem;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

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

    .program-details {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-content {
        padding: 0;
    }

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

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

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .program-header {
        flex-direction: column;
    }

    .program-meta {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.7rem;
    }

    .story-content {
        font-size: 0.95rem;
    }

    .nav-wrapper {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        font-size: 0.9rem;
    }
}
