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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: #fff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-accept {
    background-color: var(--success-color);
    color: #fff;
}

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

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

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

.nav-minimal {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

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

.story-header {
    margin-bottom: 50px;
    padding-top: 20px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.inline-image {
    margin: 50px 0;
}

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

.story-intro p,
.story-continuation p,
.trust-section p,
.insight-section p,
.reality-check p,
.final-thought p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.quote-block {
    font-size: 22px;
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    padding-left: 24px;
    margin: 40px 0;
    color: var(--primary-color);
}

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

.cta-link {
    font-size: 18px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
}

.problem-section,
.story-continuation,
.trust-section,
.insight-section,
.reality-check,
.services-reveal,
.urgency-section,
.form-section {
    margin: 70px 0;
}

.problem-section h2,
.story-continuation h2,
.trust-section h2,
.insight-section h2,
.reality-check h2,
.services-reveal h2,
.urgency-section h2,
.form-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.belief-list {
    margin: 40px 0;
}

.belief-item {
    margin-bottom: 35px;
    padding: 24px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.belief-item p:first-child {
    font-size: 20px;
    margin-bottom: 12px;
}

.belief-item p:last-child {
    font-size: 17px;
    color: #555;
    margin-bottom: 0;
}

.key-decision {
    margin: 40px 0;
    padding-left: 30px;
    border-left: 3px solid var(--accent-color);
}

.key-decision h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.key-decision p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.cta-block {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 40px;
    margin: 60px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.testimonial-inline {
    background-color: #f0f7ff;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.insight-points {
    margin: 35px 0;
    padding: 30px;
    background-color: #fef9f3;
    border-radius: 4px;
}

.insight-points p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-points p:last-child {
    margin-bottom: 0;
}

.reality-list {
    margin: 30px 0;
    padding: 24px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.reality-list p {
    font-size: 17px;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.reality-list p:last-child {
    margin-bottom: 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select {
    width: 100%;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.calculation-example {
    background-color: #fff5f5;
    padding: 30px;
    margin: 35px 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.calculation-example p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.calculation-result {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 18px;
}

.registration-form {
    max-width: 500px;
    margin: 40px auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.final-thought {
    text-align: center;
    margin: 80px 0 60px;
    padding: 40px 20px;
}

.site-footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-btn {
    display: block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

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

    .story-header h1 {
        font-size: 32px;
    }

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

    .story-intro p,
    .story-continuation p,
    .trust-section p,
    .insight-section p,
    .reality-check p {
        font-size: 17px;
    }

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

    .problem-section h2,
    .story-continuation h2,
    .trust-section h2,
    .insight-section h2,
    .reality-check h2,
    .services-reveal h2,
    .urgency-section h2 {
        font-size: 26px;
    }

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

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

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

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