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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b35;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gray: #666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    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: 1000px;
    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-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: #ff5220;
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 4rem 0 3rem;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.hero-lead {
    font-size: 1.4rem;
    color: var(--gray);
    font-style: italic;
}

.story-intro,
.insight-block,
.problem-amplify,
.story-reveal,
.testimonial-section,
.benefits-reveal,
.reality-check,
.services-preview,
.urgency-block,
.form-section,
.final-push {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.first-drop::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 0 0.1em 0 0;
    color: var(--secondary-color);
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 3rem 0;
}

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

.image-caption {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
}

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

.editorial-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.editorial-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff5220;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    font-style: normal;
}

.benefit-item {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
}

.benefit-item h3 {
    margin-top: 0;
}

.service-card {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-service {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

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

.btn-service.selected {
    background: var(--secondary-color);
}

.editorial-form {
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    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-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

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

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

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

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

    .btn-sticky {
        display: block;
        text-align: center;
    }
}