:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5f3f;
    --accent-color: #4a8c5e;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c41e3a;
    --success-color: #2d7a4f;
}

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

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

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-top: 1rem;
}

.hero-image {
    margin-top: 2rem;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.article-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
}

.article-intro p {
    margin-bottom: 1.2rem;
}

.article-section {
    margin: 3.5rem 0;
}

.article-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.article-section h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-section.alternate {
    background-color: var(--bg-light);
    padding: 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    border-radius: 4px;
}

.section-content-with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    flex: 1;
}

.image-block {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.insight-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.insight-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-medium);
}

.insight-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.action-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.action-steps li {
    counter-increment: step-counter;
    padding-left: 3rem;
    margin-bottom: 1.3rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-medium);
}

.action-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.trust-element {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.trust-element blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.trust-element cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-inline {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background-color: #f0f7f3;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

.final-cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.7rem;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 5%;
    margin-top: 5rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 31, 31, 0.95);
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    color: var(--bg-white);
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.services-detailed .service-detail {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.service-detail.featured {
    border: 2px solid var(--accent-color);
    background-color: #f0f7f3;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-body ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    line-height: 1.6;
}

.service-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.faq-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.faq-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-page .centered {
    text-align: center;
}

.confirmation-details {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.selected-service {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.next-step {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.next-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checklist li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.checklist li::before {
    content: "☐";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.legal-section li {
    margin-bottom: 0.7rem;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.comparison-content,
.values-content,
.steps-content {
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 5%;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .editorial-container {
        padding: 2rem 5%;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.6rem;
    }

    .article-section.alternate {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
        text-align: center;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) {
    .section-content-with-image {
        flex-direction: row;
    }

    .image-block {
        width: 45%;
    }
}

.image-block.centered {
    margin: 2rem auto;
    max-width: 100%;
}

.final-note {
    padding: 2rem;
    background-color: #f0f7f3;
    border-radius: 4px;
}