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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    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: 1100px;
    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-size: 14px;
    line-height: 1.5;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.brand-logo {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.hero-text-centered {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text-centered h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #6a6a6a;
    font-style: italic;
}

.hero-image-wrapper {
    width: 100%;
    margin: 0 auto;
}

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

.story-intro, .problem-amplification, .insight-reveal, .story-transition, .method-reveal, .trust-building, .value-reveal, .services-reveal, .urgency-soft, .form-section, .final-message {
    margin-bottom: 70px;
}

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

.story-lead {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.narrow-content p {
    margin-bottom: 24px;
}

.narrow-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

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

.cta-link-inline:hover, .cta-link-secondary:hover {
    opacity: 0.7;
}

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

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

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

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

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

.cta-floating-section {
    margin: 80px 0;
}

.cta-box-inline {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
}

.cta-box-inline h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-box-inline p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e5e5e5;
}

.btn-primary, .btn-secondary, .btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: #fff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #e5e5e5;
}

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

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

.btn-primary-large {
    background: #1a1a1a;
    color: #fff;
    padding: 18px 48px;
    font-size: 18px;
    width: 100%;
}

.btn-primary-large:hover {
    background: #333;
}

.benefit-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.benefit-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.testimonials-stack {
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #e5e5e5;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.service-editorial {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.service-editorial:last-child {
    border-bottom: none;
}

.service-editorial h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-editorial p {
    margin-bottom: 15px;
}

.price-reveal {
    font-size: 22px;
    margin-top: 20px;
    color: #1a1a1a;
}

.contact-form-editorial {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2a2a2a;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d5d5d5;
    font-family: inherit;
    background: #fff;
}

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

.footer-minimal {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 32px;
    }

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

    .narrow-content h2 {
        font-size: 28px;
    }

    .story-lead {
        font-size: 20px;
    }

    body {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

.simple-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.simple-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.simple-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.simple-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.simple-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.simple-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.simple-content li {
    margin-bottom: 12px;
}

.contact-info {
    background: #f5f5f5;
    padding: 40px;
    margin: 40px 0;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a;
}

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

.service-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 12px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .simple-content h1 {
        font-size: 32px;
    }

    .simple-content h2 {
        font-size: 24px;
    }
}