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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: white;
    color: black;
}

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

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

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

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

.hero-editorial {
    margin-bottom: 60px;
}

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

.headline-large {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.subheadline {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.hero-image-inline {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.content-narrow p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.dropcap::first-letter {
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    margin: 5px 10px 0 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.inline-cta-soft {
    margin: 40px 0;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.image-break {
    margin: 60px 0;
}

.image-break img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.image-break figcaption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.95rem;
}

.section-headline {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.problem-section,
.insight-section,
.story-section,
.reveal-section {
    margin-bottom: 60px;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-left: 5px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

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

.stats-inline {
    margin: 40px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    display: block;
    max-width: 300px;
}

.cta-card-center {
    max-width: 600px;
    margin: 60px auto;
    padding: 50px 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-card-center h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-card-center p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.inline-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

.styled-list {
    margin: 30px 0;
    padding-left: 30px;
}

.styled-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonials-scattered {
    max-width: 900px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card:nth-child(odd) {
    margin-left: 0;
    margin-right: 60px;
}

.testimonial-card:nth-child(even) {
    margin-left: 60px;
    margin-right: 0;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 15px;
}

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

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

.service-card-editorial {
    padding: 40px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-editorial:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card-editorial.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.include-item {
    padding: 8px 12px;
    background: var(--light-bg);
    border-radius: 4px;
    font-size: 0.95rem;
}

.include-item::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 5px;
}

.service-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-editorial {
    max-width: 650px;
    margin: 80px auto;
    padding: 50px;
    background: var(--light-bg);
    border-radius: 12px;
}

.form-container-narrow {
    max-width: 600px;
}

.form-headline {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-subtext {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--accent-color);
}

.btn-submit-form {
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.urgency-section {
    margin: 60px auto;
}

.urgency-box {
    padding: 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.final-cta {
    text-align: center;
    margin: 80px auto;
    padding: 60px 40px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
}

.final-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 30px;
}

.footer-editorial {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}

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

.btn-sticky {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .editorial-container {
        padding: 80px 15px 40px;
    }

    .headline-large {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .hero-image-inline {
        height: 250px;
    }

    .content-narrow p {
        font-size: 1rem;
    }

    .section-headline {
        font-size: 1.6rem;
    }

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

    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card-editorial {
        padding: 25px;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-price {
        font-size: 1.8rem;
    }

    .form-section-editorial {
        padding: 30px 20px;
    }

    .form-headline {
        font-size: 1.6rem;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }

    .btn-sticky {
        display: block;
        width: 100%;
    }
}