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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.2s;
}

.btn-accept {
    background: #4a9d5f;
    color: #fff;
}

.btn-accept:hover {
    background: #3d8550;
}

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

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e0e0dc;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c2c2c;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.article-hero {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.hero-image-editorial {
    width: 100%;
    margin: 0 -5%;
    width: 110%;
    overflow: hidden;
}

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

.story-section {
    margin: 5rem 0;
}

.story-section.alternate-bg {
    margin-left: -10%;
    margin-right: -10%;
    padding: 3rem 10%;
    background: #f0f0ed;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.story-content p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.inline-cta {
    margin-top: 2rem;
}

.cta-text-link {
    color: #4a9d5f;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.cta-text-link:hover {
    opacity: 0.7;
}

.image-break {
    margin: 5rem -10%;
    width: 120%;
}

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

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 1rem;
}

.services-preview {
    margin: 6rem 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0e0dc;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.service-detail {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a9d5f;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service:hover {
    background: #1a1a1a;
}

.btn-select-service.selected {
    background: #4a9d5f;
}

.testimonial-inline {
    margin: 5rem 0;
}

.testimonial-inline blockquote {
    border-left: 3px solid #4a9d5f;
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #7a7a7a;
}

.cta-button-editorial {
    display: inline-block;
    background: #4a9d5f;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-editorial:hover {
    background: #3d8550;
}

.trust-elements {
    margin: 5rem 0;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 1rem;
    color: #5a5a5a;
    margin: 0;
}

.form-section {
    margin: 6rem 0;
    padding: 3rem;
    background: #f8f8f5;
}

.selected-service-box {
    background: #e8f4eb;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid #4a9d5f;
}

.selected-service-box p {
    margin: 0;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0cc;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9d5f;
}

.btn-submit {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.btn-submit:disabled {
    background: #9a9a9a;
    cursor: not-allowed;
}

.final-push {
    margin: 5rem 0 3rem;
    text-align: center;
}

.closing-thought {
    font-size: 1.3rem;
    font-style: italic;
    color: #5a5a5a;
}

.footer-editorial {
    background: #2c2c2c;
    color: #d0d0cc;
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section a {
    display: block;
    color: #b0b0ac;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .nav-editorial {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .image-break {
        width: 100%;
        margin: 3rem 0;
    }

    .story-section.alternate-bg {
        margin-left: -5%;
        margin-right: -5%;
        padding: 2rem 5%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}