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

:root {
    --primary: #2c1810;
    --secondary: #8b4513;
    --accent: #d4a574;
    --text: #333;
    --text-light: #666;
    --bg: #fefefe;
    --bg-alt: #f9f7f4;
    --border: #e5e5e5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #c99760;
}

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

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

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.3rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--secondary);
}

.editorial-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    margin-bottom: 4rem;
}

.hero-content {
    margin-bottom: 2.5rem;
}

.hero-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    margin: 2rem 0;
}

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

.narrative-section {
    margin: 4rem 0;
}

.narrative-text p {
    margin-bottom: 1.5rem;
}

.inline-cta-block {
    background: var(--bg-alt);
    padding: 3rem 2.5rem;
    margin: 4rem -1rem;
    border-left: 4px solid var(--accent);
}

.cta-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 400;
}

.cta-inner p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-inline {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.btn-inline:hover {
    background: var(--secondary);
}

.story-section {
    margin: 5rem 0;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-weight: 400;
}

.story-text p {
    margin-bottom: 1.3rem;
}

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

.problem-section {
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-weight: 400;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--secondary);
    font-weight: 600;
}

.problem-item p {
    color: var(--text-light);
}

.quote-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.quote-section blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--primary);
    padding: 0 2rem;
    border-left: 3px solid var(--accent);
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-reveal {
    margin: 6rem 0;
}

.services-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 400;
}

.services-intro p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.service-card.featured {
    border: 2px solid var(--accent);
    background: #fdfcfa;
}

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

.service-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.service-description {
    margin-bottom: 1.2rem;
    color: var(--text);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

.service-cta:hover {
    background: var(--secondary);
}

.trust-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: var(--primary);
    color: white;
    margin-left: -2rem;
    margin-right: -2rem;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 1.8rem;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

.approach-section {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-weight: 400;
}

.approach-text > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.step:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.step strong {
    color: var(--primary);
}

.urgency-block {
    background: var(--accent);
    padding: 3rem 2.5rem;
    margin: 5rem -1rem;
    text-align: center;
}

.urgency-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-content p {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.btn-urgency {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-urgency:hover {
    background: var(--secondary);
}

.faq-section {
    margin: 5rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--secondary);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
}

.final-cta-section {
    margin: 6rem 0;
    padding: 4rem 2.5rem;
    background: var(--bg-alt);
    margin-left: -2rem;
    margin-right: -2rem;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 400;
    text-align: center;
}

.final-cta-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: white;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-group a {
    color: var(--secondary);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

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

.site-footer {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    display: block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .article-hero h1 {
        font-size: 3.5rem;
    }

    .form-row {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .approach-section {
        flex-direction: row;
        align-items: center;
    }

    .approach-visual {
        flex: 1;
    }

    .approach-text {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
        gap: 1rem;
    }

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

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .article-hero h1 {
        font-size: 2.2rem;
    }

    .inline-cta-block {
        padding: 2rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .trust-section {
        padding: 2rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .final-cta-section {
        padding: 3rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .urgency-block {
        padding: 2rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}