/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555555;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a7c59;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
    text-align: center;
}

.hero-text-center {
    margin-bottom: 40px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead {
    font-size: 22px;
    color: #555555;
    font-style: italic;
}

.hero-image {
    margin: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Story Sections */
.story-intro,
.problem-section,
.insight-section,
.trust-section,
.benefits-section,
.urgency-section,
.social-proof,
.cta-section,
.form-section,
.final-cta,
.services-editorial {
    margin-bottom: 60px;
}

.story-intro h2,
.problem-section h2,
.insight-section h2,
.trust-section h2,
.benefits-section h2,
.urgency-section h2,
.social-proof h2,
.cta-section h2,
.form-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.dropcap::first-letter {
    font-size: 72px;
    float: left;
    line-height: 60px;
    padding-right: 8px;
    margin-top: 3px;
    color: #4a7c59;
}

p {
    margin-bottom: 20px;
}

/* Inline CTA */
.inline-cta {
    margin: 35px 0;
    text-align: center;
}

.cta-link {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #4a7c59;
    text-decoration: none;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.cta-link.cta-strong {
    font-size: 20px;
    font-weight: 700;
}

/* Editorial List */
.editorial-list {
    margin: 25px 0;
    padding-left: 25px;
}

.editorial-list li {
    margin-bottom: 12px;
}

/* Inline Images */
.inline-image {
    margin: 40px 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.inline-image figcaption {
    margin-top: 10px;
    font-size: 15px;
    color: #777777;
    font-style: italic;
    text-align: center;
}

/* Testimonials */
.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f3;
    border-left: 4px solid #4a7c59;
    font-size: 19px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666666;
}

/* Services Editorial */
.service-card {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

.service-card p {
    margin-bottom: 20px;
    color: #555555;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.price {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
}

.btn-select {
    font-family: 'Arial', sans-serif;
    padding: 12px 30px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #3d6649;
}

.btn-select.selected {
    background-color: #2d4a36;
}

/* Benefit Items */
.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #555555;
}

/* Form */
.editorial-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    font-family: 'Arial', sans-serif;
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6649;
}

/* Final CTA */
.closing-text {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 80px;
}

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

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

.footer-links a {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #aaaaaa;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4a7c59;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        border-top: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .lead {
        font-size: 19px;
    }

    body {
        font-size: 17px;
    }

    .story-intro h2,
    .problem-section h2,
    .insight-section h2,
    .trust-section h2,
    .benefits-section h2,
    .urgency-section h2,
    .social-proof h2,
    .cta-section h2,
    .form-section h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .testimonial {
        padding: 20px;
        font-size: 17px;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .editorial-content {
        padding: 20px 15px;
    }

    .hero-editorial h1 {
        font-size: 28px;
    }

    .lead {
        font-size: 18px;
    }

    body {
        font-size: 16px;
    }
}