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

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

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

.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: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

.editorial-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
}

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

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 35px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 25px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 18px;
}

.inline-cta-block {
    text-align: center;
    margin: 45px 0;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-link {
    color: #e74c3c;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.problem-section,
.insight-reveal,
.method-section,
.transformation-stories,
.trust-section,
.services-reveal,
.urgency-section,
.final-note {
    margin-bottom: 50px;
}

.problem-section h2,
.insight-reveal h2,
.method-section h2,
.transformation-stories h2,
.trust-section h2,
.services-reveal h2,
.urgency-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.problem-section p,
.insight-reveal p,
.method-section p,
.trust-section p,
.urgency-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

.inline-image-small {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 25px 0;
    border-radius: 4px;
}

.section-image {
    width: 100%;
    height: auto;
    margin: 20px 0 30px;
    border-radius: 4px;
}

.insight-list {
    margin: 25px 0;
    padding-left: 25px;
}

.insight-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.testimonial-inline {
    background: #f8f9fa;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #e74c3c;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 10px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.story-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 4px;
}

.story-card p {
    font-size: 17px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.story-card cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.mid-article-cta {
    text-align: center;
    background: #ecf0f1;
    padding: 45px 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.mid-article-cta h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.service-article {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.service-article.premium {
    border: 2px solid #f39c12;
    background: #fffaf0;
}

.service-article h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-article p {
    font-size: 17px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0 15px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-select-service.selected {
    background: #27ae60;
}

.final-cta-section {
    text-align: center;
    background: #34495e;
    color: #fff;
    padding: 50px 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.final-cta-section h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.final-cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary-large {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary-large:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.enrollment-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

.enrollment-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.enrollment-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.final-note {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 40px;
}

.final-note a {
    color: #3498db;
    text-decoration: none;
}

.final-note a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: #e74c3c;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

@media (max-width: 768px) {
    .editorial-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .editorial-container {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .problem-section h2,
    .insight-reveal h2,
    .method-section h2,
    .transformation-stories h2,
    .trust-section h2,
    .services-reveal h2,
    .urgency-section h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .service-article {
        padding: 20px;
    }

    .enrollment-section {
        padding: 25px 20px;
    }
}