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

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

.ad-disclosure {
    background-color: #f0e9dc;
    color: #5a5a5a;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #d4c9b8;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2d5a3d;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a3d;
}

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

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e4dc;
    overflow: hidden;
}

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

.article-header-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.article-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.article-body {
    margin-top: 40px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: normal;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2a2a2a;
    font-weight: normal;
}

.content-block p {
    margin-bottom: 20px;
}

.opening-paragraph {
    font-size: 20px;
    color: #3a3a3a;
}

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

.content-list li {
    margin-bottom: 15px;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f0ede7;
    padding: 0;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
}

.inline-cta {
    background-color: #f5f2ec;
    padding: 35px 30px;
    margin: 50px 0;
    border-left: 4px solid #2d5a3d;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.cta-button {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #234a30;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #8a9d8e;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
    margin-left: 15px;
}

.cta-button-secondary:hover {
    background-color: #6f7e73;
}

.services-cards {
    margin: 60px -30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    background-color: #e8e4dc;
}

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

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

.service-card p {
    margin-bottom: 15px;
    padding: 0 25px;
    font-size: 17px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #2d5a3d;
    margin-top: 20px;
    padding: 0 25px;
}

.select-service-btn {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    cursor: pointer;
    margin: 20px 25px 25px 25px;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234a30;
}

.select-service-btn.selected {
    background-color: #4a7a5a;
}

.editorial-form {
    background-color: #f9f7f4;
    padding: 40px 35px;
    margin: 40px 0;
    border: 1px solid #e0dcd5;
}

.form-notice {
    background-color: #fff9e6;
    border-left: 4px solid #f4a742;
    padding: 20px;
    margin-bottom: 30px;
    display: block;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', serif;
    font-size: 16px;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #234a30;
}

.submit-btn:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}

.testimonial-block {
    background-color: #f5f2ec;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #8a9d8e;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

.disclaimer-section {
    background-color: #fafaf8;
    border: 1px solid #d4d4d4;
    padding: 30px;
    margin: 50px 0;
}

.disclaimer-text {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.references-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #d0d0d0;
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #2d5a3d;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.page-intro {
    font-size: 20px;
    color: #4a4a4a;
    font-style: italic;
}

.services-detailed {
    margin: 50px 0;
}

.service-detail {
    margin-bottom: 70px;
}

.service-detail-image {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e4dc;
}

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-price {
    font-size: 26px;
    font-weight: bold;
    color: #2d5a3d;
    margin-top: 25px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #2d5a3d;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border-bottom: 2px solid #2d5a3d;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.service-link:hover {
    opacity: 0.7;
}

.cta-section {
    background-color: #f5f2ec;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.contact-info-block h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a3a3a;
}

.contact-map-placeholder {
    background-color: #e8e4dc;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.map-note {
    padding: 15px 20px;
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
    background-color: #f0ede7;
}

.thanks-container {
    text-align: center;
    padding: 60px 40px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-message {
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.7;
}

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

.thanks-additional {
    margin-top: 60px;
    text-align: left;
}

.thanks-additional h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 25px;
    text-align: left;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

.legal-page .content-block {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2a2a2a;
}

.legal-page p {
    margin-bottom: 18px;
    font-size: 17px;
}

.cookie-table {
    background-color: #f9f7f4;
    padding: 25px;
    margin: 20px 0;
    border-left: 3px solid #2d5a3d;
}

.main-footer {
    background-color: #2a3a2f;
    color: #d0d0d0;
    padding: 50px 40px 30px 40px;
    margin-top: 80px;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5a4f;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 30px;
    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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #8fc4a0;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #234a30;
}

.cookie-btn.reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a5a5a;
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .article-header-text h1 {
        font-size: 34px;
    }

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

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

    .services-cards {
        margin: 40px 0;
    }

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

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

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

    .cta-button-secondary {
        margin-left: 0;
    }
}