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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc8f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

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);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-figure {
    margin: 50px 0;
    background-color: var(--bg-light);
}

.hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 35px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.article-body ul {
    margin: 25px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 12px;
}

.inline-figure {
    margin: 45px 0;
    background-color: var(--bg-light);
}

.inline-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.highlight-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 45px 0;
    background-color: var(--bg-light);
}

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

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 45px 0;
}

.feature-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: var(--primary-color);
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
}

.services-preview {
    margin: 60px 0;
    padding: 45px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 15px;
}

.services-preview > p {
    text-align: center;
    margin-bottom: 45px;
}

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

.service-card {
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 15px;
    color: var(--text-light);
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 25px;
}

.service-card .card-cta {
    display: inline-block;
    margin: 0 25px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-card .card-cta:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
}

.contact-form h3 {
    margin: 0 0 30px;
    font-size: 1.6rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--secondary-color);
    border-color: var(--secondary-color);
}

.submit-button {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-color);
}

.disclaimer {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 25px;
    background-color: var(--bg-light);
    margin: 50px 0;
    border-left: 3px solid var(--accent-color);
}

.service-detail {
    margin: 50px 0;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-figure {
    margin: 0 0 30px;
    background-color: var(--bg-light);
}

.service-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0 25px;
}

.cta-section {
    background-color: var(--bg-light);
    padding: 50px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    margin: 0 0 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-info-section {
    margin: 45px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 35px 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 35px;
}

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

.faq-item p {
    color: var(--text-light);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 45px 0;
}

.step-card {
    background-color: var(--bg-light);
    padding: 30px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 12px;
}

.step-card p {
    margin: 0 0 20px;
    color: var(--text-light);
}

.step-card .card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.step-card .card-link:hover {
    color: var(--primary-color);
}

.confirmation-note {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 20px;
    background-color: var(--bg-light);
    margin: 40px 0;
}

.legal-page .article-body {
    font-size: 1rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--bg-light);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

@media (min-width: 768px) {
    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1;
        min-width: 250px;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 18px);
    }

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

    .contact-item {
        flex: 1;
        min-width: 250px;
    }

    .next-steps {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .editorial-content {
        padding: 0 20px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px;
    }

    .cta-section {
        padding: 30px 20px;
    }
}