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

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

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

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

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

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

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

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

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

.btn-accept {
    background: #ffd700;
    color: #1a1a1a;
}

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

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

.editorial-container {
    max-width: 100%;
    background: #fff;
}

.editorial-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 48px;
    max-width: 800px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    color: #fff;
    font-size: 22px;
    max-width: 600px;
    font-style: italic;
}

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

.editorial-intro .lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.editorial-story {
    background: #f5f5f5;
}

.editorial-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

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

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

.problem-amplification {
    background: #fff;
}

.problem-amplification h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.pain-points {
    list-style: none;
    margin: 30px 0;
}

.pain-points li {
    padding: 15px 0 15px 30px;
    border-left: 3px solid #1a1a1a;
    margin-bottom: 20px;
    font-size: 18px;
}

.highlight-text {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    padding: 30px;
    background: #fffbea;
    border-left: 4px solid #ffd700;
}

.inline-cta {
    text-align: center;
    padding: 50px 40px;
    background: #f9f9f9;
}

.cta-link {
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #666;
    border-color: #666;
}

.insight-section {
    background: #fff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}

.insight-block {
    margin: 50px 0;
}

.insight-block h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.7;
}

.trust-section {
    background: #2c2c2c;
    color: #fff;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonials-inline {
    background: #f5f5f5;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #1a1a1a;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.section-cta {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.cta-box h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

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

.benefits-section {
    background: #fff;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 400;
}

.benefit-item {
    margin: 40px 0;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.7;
}

.urgency-section {
    background: #fffbea;
}

.urgency-section p {
    font-size: 19px;
    margin-bottom: 25px;
}

.urgency-text {
    font-weight: 600;
}

.services-reveal {
    background: #f9f9f9;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.service-card.featured {
    border: 2px solid #1a1a1a;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 25px 0;
}

.service-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 600;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.form-section {
    background: #fff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-submit:hover {
    background: #333;
}

.final-push {
    background: #2c2c2c;
    color: #fff;
}

.final-push p {
    font-size: 20px;
    margin-bottom: 20px;
}

.closing-statement {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-copy {
    font-size: 14px;
    color: #999;
}

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

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

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .narrow-text {
        padding: 40px 20px;
    }

    .editorial-intro .lead-text {
        font-size: 20px;
    }

    .editorial-story h2,
    .insight-section h2,
    .benefits-section h2,
    .services-reveal h2,
    .form-section h2 {
        font-size: 28px;
    }

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

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

    .service-card {
        padding: 25px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
