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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8a3a;
    --accent-color: #87a96b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    opacity: 0.95;
}

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.narrow-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-medium);
}

.narrow-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.narrow-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.inline-cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.content-image-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.content-image-section.reverse {
    background-color: var(--bg-white);
}

.inline-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    border-radius: 8px;
}

.insight-block {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
}

.editorial-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid white;
    padding-left: 30px;
    margin: 0;
}

.insight-block .editorial-quote {
    color: white;
}

.editorial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.editorial-list {
    margin: 25px 0;
    padding-left: 25px;
}

.editorial-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text-medium);
}

.cta-inline-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 720px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-medium);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-final {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.closing-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.closing-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.7;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.btn-sticky {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.page-header {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
}

.badge-corner {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    background-color: var(--bg-light);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body {
    padding: 40px;
}

.service-body p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-body h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.service-body ul {
    margin: 15px 0 25px;
    padding-left: 25px;
}

.service-body ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-medium);
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin: 25px 0;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
}

.response-time,
.note-text {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 35px 0 20px;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-reminder {
    font-size: 16px;
    color: var(--text-medium);
}

.contact-reminder strong {
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 18px;
}

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

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .nav-links {
        gap: 40px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .nav-minimal {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .narrow-content {
        padding: 40px 20px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

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

    .cta-box {
        padding: 35px 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .service-header {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .service-body {
        padding: 30px 20px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }

    .footer-content {
        gap: 30px;
    }
}
