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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fefefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-cookie-accept {
    background-color: #3498db;
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

.story-hero {
    padding: 5rem 2rem 4rem;
    background-color: #f8f9fa;
    border-bottom: 3px solid #3498db;
}

.hero-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.4rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.story-intro,
.story-development,
.story-continuation,
.problem-amplification,
.insight-reveal,
.method-explanation,
.social-proof,
.services-reveal,
.enrollment-form-section,
.final-perspective {
    padding: 3rem 2rem;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #1a1a1a;
}

.narrow-column p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.narrow-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-column h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
}

.narrow-column h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.inline-image {
    margin: 4rem 0;
    width: 100%;
}

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

.trust-signal {
    background-color: #ecf7fe;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-box p {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 500px;
    margin: 0 auto;
}

.insight-list {
    margin: 2rem 0 2rem 2rem;
    list-style: none;
}

.insight-list li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-inline {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    margin: 4rem 0;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-box.secondary {
    background-color: transparent;
}

.cta-inline.secondary {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-box.secondary p {
    color: #2c3e50;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    border: 2px solid #3498db;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.testimonial-embed {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial-embed p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-embed cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.method-step {
    margin: 2.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #ecf7fe;
}

.service-card-editorial {
    margin: 3rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-age {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card-editorial > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.service-duration {
    font-size: 1rem;
    color: #666;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service-select {
    background-color: #f8f9fa;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-service-select:hover {
    background-color: #3498db;
    color: white;
}

.btn-service-select.selected {
    background-color: #3498db;
    color: white;
}

.editorial-form {
    margin-top: 2rem;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input[readonly] {
    background-color: #e8f4f8;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    background-color: #3498db;
    color: white;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.urgency-signal {
    background-color: #fff9e6;
    padding: 2rem;
    margin: 3rem 0;
}

.urgency-box {
    text-align: center;
    padding: 1.5rem;
}

.urgency-box p {
    font-size: 1.1rem;
    color: #856404;
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    z-index: 99;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-sticky {
    background-color: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #2980b9;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .story-hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .narrow-column h2 {
        font-size: 1.7rem;
    }

    .narrow-column p {
        font-size: 1.05rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .service-card-editorial h3 {
        font-size: 1.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .btn-service-select {
        max-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

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

@media (max-width: 480px) {
    .nav-minimal {
        padding: 1rem;
    }

    .story-hero {
        padding: 3rem 1rem 2rem;
    }

    .story-hero h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .narrow-column h2 {
        font-size: 1.5rem;
    }
}