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

:root {
    --color-primary: #2d5a3f;
    --color-secondary: #4a7c59;
    --color-accent: #8b9d77;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-bg: #fefefe;
    --color-bg-alt: #f4f6f4;
    --color-border: #d9e2dc;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    display: block;
    transition: all 0.3s;
}

.editorial-layout {
    padding: 60px 0 80px;
}

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

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

.headline-primary {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro-lead {
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.hero-image-editorial {
    margin: 40px 0;
}

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

.image-caption {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 12px;
    font-style: italic;
}

.narrative-block {
    margin: 60px 0;
}

.body-text-large {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--color-text);
}

.body-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-title-editorial {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text);
}

.subsection-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--color-text);
}

.inline-cta-soft {
    margin: 32px 0;
}

.link-arrow {
    font-family: var(--font-primary);
    font-size: 17px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-primary);
    transition: all 0.2s;
}

.link-arrow:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.insight-section {
    margin: 80px 0;
}

.insight-card {
    background: var(--color-bg-alt);
    padding: 48px;
    border-radius: 4px;
    border-left: 4px solid var(--color-primary);
}

.visual-break {
    margin: 80px 0;
}

.image-pair {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.image-pair img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.depth-section {
    margin: 80px 0;
}

.method-highlight {
    background: var(--color-bg-alt);
    padding: 32px;
    margin: 40px 0;
    border-radius: 4px;
}

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

.btn-primary-editorial {
    display: inline-block;
    padding: 16px 32px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary-editorial:hover {
    background: var(--color-secondary);
}

.btn-secondary-editorial {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-editorial:hover {
    background: var(--color-primary);
    color: white;
}

.testimonial-editorial {
    margin: 80px 0;
}

.quote-block {
    border-left: 4px solid var(--color-accent);
    padding-left: 32px;
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text);
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    font-family: var(--font-primary);
    color: var(--color-text-light);
}

.course-reveal {
    margin: 80px 0;
}

.course-list-editorial {
    margin-top: 48px;
}

.course-item-editorial {
    background: var(--color-bg-alt);
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.course-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.course-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-text);
}

.course-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.course-price {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-select-course {
    padding: 12px 28px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select-course:hover {
    background: var(--color-secondary);
}

.enrollment-section {
    margin: 80px 0;
    padding: 48px 0;
    background: var(--color-bg-alt);
}

.enrollment-intro {
    margin-bottom: 40px;
}

.form-container-editorial {
    background: white;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.course-prompt {
    text-align: center;
    padding: 60px 20px;
}

.prompt-text {
    font-size: 18px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

.selected-course-display {
    background: var(--color-bg-alt);
    padding: 20px;
    margin-bottom: 32px;
    border-radius: 4px;
    border-left: 4px solid var(--color-primary);
    font-family: var(--font-primary);
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-serif);
    line-height: 1.6;
}

.btn-submit-editorial {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 12px;
}

.btn-submit-editorial:hover {
    background: var(--color-secondary);
}

.continuation-section {
    margin: 80px 0;
}

.final-visual {
    margin: 80px 0;
}

.final-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.closing-section {
    margin: 80px 0 40px;
}

.final-cta {
    margin: 40px 0;
    text-align: center;
}

.page-header-editorial {
    margin-bottom: 60px;
}

.content-image-editorial {
    margin: 40px 0;
}

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

.team-section {
    margin: 80px 0;
}

.values-section {
    margin: 80px 0;
}

.value-item {
    margin-bottom: 48px;
}

.impact-section {
    margin: 80px 0;
}

.closing-cta-about {
    margin: 80px 0 40px;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.courses-intro {
    margin-bottom: 60px;
}

.course-catalogue {
    margin: 60px 0;
}

.course-detail-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 48px;
    overflow: hidden;
}

.course-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.course-title-large {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
}

.course-price-large {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
}

.course-detail-body {
    padding: 32px;
}

.course-description-extended {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.course-structure {
    margin: 32px 0;
}

.course-topics {
    list-style: none;
    margin-top: 16px;
}

.course-topics li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.course-topics li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.course-meta-extended {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 15px;
}

.meta-item {
    color: var(--color-text);
}

.course-action {
    margin-top: 32px;
}

.faq-section {
    margin: 80px 0;
}

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

.contact-info-section {
    margin: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-context {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-label {
    font-family: var(--font-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    line-height: 1.6;
}

.contact-value a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.contact-value a:hover {
    border-color: var(--color-primary);
}

.contact-note {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.contact-cta-box {
    background: var(--color-bg-alt);
    padding: 28px;
    margin-top: 40px;
    border-radius: 4px;
}

.additional-info-section {
    margin: 80px 0;
}

.info-item {
    margin-bottom: 48px;
}

.thanks-section {
    margin: 80px 0;
}

.thanks-content {
    text-align: center;
}

.confirmation-details {
    text-align: left;
    margin: 60px 0;
}

.confirmation-item {
    margin-bottom: 48px;
}

.confirmation-list {
    list-style: none;
    margin-top: 16px;
}

.confirmation-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
}

.confirmation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 48px 0;
}

.next-steps-visual {
    margin: 60px 0;
}

.next-steps-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.legal-page {
    margin: 40px 0;
}

.legal-updated {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-list {
    margin: 16px 0 16px 32px;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 8px;
}

.cookie-details {
    background: var(--color-bg-alt);
    padding: 20px;
    margin: 16px 0;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 15px;
}

.cookie-settings-button {
    margin: 24px 0;
}

.processing-table {
    margin: 24px 0;
}

.processing-row {
    background: var(--color-bg-alt);
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 16px;
}

.processing-row div {
    margin-bottom: 8px;
}

.site-footer {
    background: var(--color-text);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-section ul li a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    color: white;
}

.btn-sticky {
    padding: 12px 28px;
    background: white;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-sticky:hover {
    background: var(--color-bg-alt);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 110;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: white;
}

.btn-cookie-accept:hover {
    background: var(--color-secondary);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-cookie-reject:hover {
    background: var(--color-bg-alt);
}

.cookie-link {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cookie-link:hover {
    border-color: var(--color-primary);
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 60px;
    }

    .image-pair {
        flex-direction: column;
    }

    .course-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

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

    .cookie-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .headline-primary {
        font-size: 32px;
    }

    .intro-lead {
        font-size: 20px;
    }

    .body-text-large {
        font-size: 19px;
    }

    .section-title-editorial {
        font-size: 26px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        gap: 16px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .insight-card {
        padding: 28px;
    }

    .method-highlight {
        padding: 24px;
    }

    .course-item-editorial {
        padding: 24px;
    }

    .course-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .form-container-editorial {
        padding: 24px;
    }

    .cta-group {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container-narrow {
        padding: 0 20px;
    }

    .headline-primary {
        font-size: 28px;
    }

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

    .quote-block {
        padding-left: 20px;
        font-size: 19px;
    }

    .course-title-large {
        font-size: 22px;
    }

    .course-price-large {
        font-size: 26px;
    }

    .course-detail-body {
        padding: 20px;
    }
}