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

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

.container-narrow {
    max-width: 680px;
    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;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a5f7a;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1a5f7a;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    border-left: 1px solid #e0e0e0;
    padding-left: 28px;
}

.editorial-layout {
    background-color: #fafaf8;
}

.story-content {
    padding: 60px 0;
}

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

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: normal;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.text-section {
    margin-bottom: 50px;
}

.text-section p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.insight-block {
    background-color: #f5f5f3;
    padding: 50px 0;
    margin: 60px 0;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.citation {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: bold;
}

.citation:hover {
    text-decoration: underline;
}

.offer-reveal {
    margin: 60px 0;
}

.offer-reveal h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.offer-reveal > .container-narrow > p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.principle-card {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #1a5f7a;
    border-radius: 2px;
}

.principle-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a5f7a;
    font-weight: normal;
}

.principle-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-inline {
    margin: 60px 0;
    background-color: #f9f9f7;
    padding: 40px 0;
}

.testimonial-inline blockquote {
    border-left: 4px solid #1a5f7a;
    padding-left: 32px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 21px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.testimonial-inline footer {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.course-options {
    margin: 70px 0;
}

.course-options h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.course-options > .container-narrow > p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.course-listing {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.course-item {
    background-color: #ffffff;
    padding: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    transition: box-shadow 0.3s;
}

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

.course-item h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #1a5f7a;
    font-weight: normal;
}

.course-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.course-price {
    font-size: 32px;
    color: #1a5f7a;
    font-weight: bold;
    margin: 20px 0;
}

.select-course {
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s;
    font-family: Georgia, 'Times New Roman', serif;
}

.select-course:hover {
    background-color: #144a5e;
}

.enrollment-form-section {
    background-color: #f5f5f3;
    padding: 60px 0;
    margin: 60px 0;
}

.enrollment-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: normal;
    color: #1a1a1a;
}

.form-intro {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #4a4a4a;
}

.story-form {
    max-width: 520px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
}

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

.btn-submit {
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s;
    font-family: Georgia, 'Times New Roman', serif;
    width: 100%;
}

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

.supporting-evidence {
    margin: 60px 0;
}

.supporting-evidence h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.supporting-evidence p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.final-context {
    margin: 60px 0;
}

.final-context h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.final-context p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.disclaimer-section {
    background-color: #f0f0ee;
    padding: 40px 0;
    margin: 60px 0 40px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.references-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.references-list {
    padding-left: 20px;
}

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

.references-list a {
    color: #1a5f7a;
    text-decoration: none;
}

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

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 24px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    border: none;
    transition: background-color 0.3s;
    font-family: Georgia, 'Times New Roman', serif;
}

.btn-cookie {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #144a5e;
}

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

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 8px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}