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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #7a9d89;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.article-image-hero {
    width: 100%;
    margin-bottom: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.article-body h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-content-block {
    margin: 4rem 0;
}

.inline-image-wrapper {
    width: 100%;
    margin: 2rem 0;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.services-intro-editorial {
    margin: 4rem 0;
}

.service-story {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.service-story h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1rem 0;
}

.cta-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.cta-inline:hover {
    background-color: #234a3d;
}

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

.testimonial-inline {
    display: block;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.how-it-works {
    margin: 4rem 0;
}

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

.form-section h2 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-white);
}

.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: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #234a3d;
}

.disclaimer-section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #fff8e8;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

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

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-article {
    margin-bottom: 4rem;
}

.cta-block-about {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.cta-block-about h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-cta:hover {
    background-color: #234a3d;
}

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

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.price-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
}

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

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

.service-description p {
    margin-bottom: 1.2rem;
}

.btn-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #658173;
}

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

.service-cta-final h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    font-weight: 600;
}

.btn-cta-large:hover {
    background-color: #234a3d;
}

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

.contact-detail {
    margin: 1.5rem 0 3rem;
}

.contact-address,
.contact-email {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.location-image {
    width: 100%;
    margin: 2.5rem 0;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

.contact-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 1.05rem;
}

.thanks-article {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content {
    text-align: left;
    margin-top: 2rem;
}

.service-confirm {
    padding: 1rem;
    background-color: #e8f5e9;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-link {
    display: block;
    padding: 1rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.thanks-link:hover {
    background-color: var(--border-color);
}

.thanks-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fff8e8;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-page {
    max-width: 800px;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .hours-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}