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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3d1b;
    --secondary-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.header-editorial {
    position: relative;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    margin-bottom: 12px;
}

.nav-minimal {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-container {
    max-width: 100%;
    background-color: var(--bg-white);
}

.story-flow {
    width: 100%;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 32px;
}

.hero-narrow {
    max-width: 100%;
    margin-bottom: 48px;
}

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

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

.hero-text-centered {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    text-align: center;
}

h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 21px;
    line-height: 1.5;
    color: var(--text-medium);
    font-weight: 400;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 500;
}

p {
    margin-bottom: 24px;
    color: var(--text-medium);
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.inline-image-wrapper {
    margin: 48px 0;
}

.inline-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #f0f0ee;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

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

.btn-text-link {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.btn-text-link:hover {
    color: var(--primary-dark);
}

.quote-block {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-medium);
    margin: 48px 0;
    padding-left: 32px;
    border-left: 4px solid var(--primary-color);
}

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

.key-points-list {
    margin: 40px 0;
}

.key-point {
    margin-bottom: 32px;
}

.key-point h3 {
    margin-top: 0;
}

.key-point p {
    margin-bottom: 0;
}

.cta-section-embedded {
    background-color: var(--bg-light);
    padding: 48px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 56px 0;
}

.cta-section-embedded h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.cta-section-embedded p {
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 4px;
    margin: 40px 0;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: var(--text-light);
}

.disclaimer-section {
    background-color: #fff8e6;
    border: 1px solid #e6d9a8;
    border-radius: 4px;
    padding: 24px;
    margin: 48px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.final-cta {
    text-align: center;
    margin-top: 64px;
}

.final-cta h2 {
    margin-top: 0;
}

.page-header-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    text-align: center;
}

.services-editorial {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px;
}

.service-block {
    display: flex;
    gap: 48px;
    margin-bottom: 72px;
    align-items: flex-start;
}

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

.service-image-wrapper {
    flex: 0 0 380px;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #f0f0ee;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-top: 0;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
}

.form-section-editorial {
    background-color: var(--bg-light);
    padding: 64px 0;
    margin-top: 48px;
}

.selected-info {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.btn-submit {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.contact-info-block {
    margin: 48px 0;
}

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

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-item p {
    margin-bottom: 0;
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
}

.thanks-section {
    padding: 80px 32px;
}

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

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.confirmation-details {
    text-align: left;
    max-width: 640px;
    margin: 48px auto;
}

.course-info-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 4px;
    margin: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.info-list {
    margin: 24px 0;
    padding-left: 24px;
}

.info-list li {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.next-steps {
    margin: 48px 0;
    text-align: left;
}

.step-item {
    margin-bottom: 32px;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.step-item p {
    margin-bottom: 0;
}

.button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.small-text {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    font-size: 15px;
}

.legal-content h2 {
    margin-top: 48px;
}

.legal-content h3 {
    margin-top: 24px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.footer-editorial {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 64px 32px 32px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .service-image-wrapper {
        flex: 1;
        width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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