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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #f0f0f0;
    color: #2c2c2c;
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

.editorial-article {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #e8ebe6;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 40px 40px;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-section,
.problem-section,
.insight-section,
.testimonial-section,
.programs-section,
.form-section,
.disclaimer-section,
.references-section {
    padding: 0 40px 50px;
}

.article-content {
    width: 100%;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.article-content h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 28px;
    margin-top: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.citation {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #1a3824;
}

.inline-image-container {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.insight-card {
    background-color: #f9faf8;
    border-left: 4px solid #2d5f3f;
    padding: 28px 32px;
    margin: 32px 0;
}

.insight-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
}

.insight-card p {
    margin-bottom: 0;
    font-size: 17px;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary-inline {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary-inline:hover {
    background-color: #234a31;
}

.testimonial-quote {
    border-left: 4px solid #e0e0e0;
    padding: 24px 32px;
    margin: 32px 0;
    background-color: #fafafa;
}

.testimonial-quote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.testimonial-quote cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.program-list {
    margin-top: 40px;
}

.program-item {
    margin-bottom: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.program-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.program-image-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #e8ebe6;
}

.program-image-container img {
    width: 100%;
    height: 100%;
}

.program-content {
    padding: 32px;
}

.program-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
}

.program-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.program-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.program-duration {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.program-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.contact-form {
    background-color: #f9faf8;
    padding: 40px;
    border-radius: 6px;
    margin-top: 32px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: #2d5f3f;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f0d68c;
    padding: 32px;
    border-radius: 6px;
    margin-top: 32px;
}

.disclaimer-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #8b6914;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a0f;
    margin-bottom: 0;
}

.references-list {
    margin-top: 24px;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.references-list a {
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #1a3824;
    text-decoration: underline;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .intro-section,
    .problem-section,
    .insight-section,
    .testimonial-section,
    .programs-section,
    .form-section,
    .disclaimer-section,
    .references-section {
        padding: 0 24px 40px;
    }

    .article-content h2 {
        font-size: 28px;
    }

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

    .article-content p {
        font-size: 17px;
    }

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

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

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 19px;
    color: #666;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2c2c2c;
}

.content-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-section ul li,
.content-section ol li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
}

.contact-info {
    background-color: #f9faf8;
    padding: 40px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.contact-info-item p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 4px;
}

.thanks-container {
    max-width: 720px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9faf8;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 64px;
    color: #2d5f3f;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    text-align: left;
}

.thanks-details strong {
    color: #2d5f3f;
}

.btn-home {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 24px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-home:hover {
    background-color: #234a31;
}