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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e4e;
    --accent-color: #8fae6d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9faf8;
    --bg-white: #ffffff;
    --border-color: #e0e4dc;
    --success-color: #4a7c59;
    --error-color: #c84c3d;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

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

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

.brand {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-editorial {
    position: relative;
    margin: 0 -30px;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.hero-text-overlay {
    padding: 40px 30px;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.intro-narrative,
.problem-insight,
.trust-section,
.closing-narrative {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opening-line {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.text-column p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.text-column h2 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: normal;
}

.text-column h3 {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: normal;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

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

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

.services-editorial {
    margin-top: 40px;
}

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

.service-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-light);
}

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

.service-item h3 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--success-color);
    font-family: 'Arial', sans-serif;
}

.service-select-btn {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    background-color: var(--bg-light);
    padding: 50px 30px;
    margin: 60px -30px 0;
    border-radius: 8px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.selected-service-box {
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-box p {
    margin: 6px 0;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-white);
}

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

.form-submit-btn {
    padding: 16px 36px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.testimonial {
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    margin: 30px 0;
}

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

.testimonial cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

.cookie-btn.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: normal;
}

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

.contact-info-section {
    margin-top: 40px;
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 38px;
    color: var(--success-color);
    margin-bottom: 24px;
    font-weight: normal;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
}

.service-selected-thanks {
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.legal-section {
    margin-top: 40px;
}

.text-column-legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-column-legal p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.text-column-legal h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: normal;
}

.text-column-legal h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: normal;
}

.text-column-legal ul {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-column-legal li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.url-text {
    font-family: 'Courier New', monospace;
    background-color: var(--bg-light);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
}

.services-detailed {
    margin-top: 40px;
}

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

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

.service-detail-item h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: normal;
}

.service-price-large {
    font-size: 26px;
    font-weight: bold;
    color: var(--success-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-content {
        padding: 30px 20px 60px;
    }

    .hero-editorial {
        margin: 0 -20px;
    }

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

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

    .text-column h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .form-section {
        margin: 40px -20px 0;
    }
}