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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e6f3e;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-alt: #f1f3f5;
    --border-color: #dee2e6;
    --white: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
}

p {
    margin-bottom: 1.3rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-image {
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

.content-section {
    padding: 4rem 0;
}

.content-section-alt {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.inline-image {
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 2rem;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.inline-image figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.testimonial-inline {
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2.5rem 0;
    background-color: var(--bg-alt);
    font-style: italic;
    font-size: 1.05rem;
}

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

.highlight-box {
    background-color: var(--bg-alt);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.clean-list {
    list-style: none;
    padding-left: 0;
}

.clean-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.clean-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-inline {
    text-align: center;
    padding: 2rem 0;
}

.btn-cta-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-cta-text:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.trust-section {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.stats-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.services-reveal {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-cards {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.8rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 1.5rem;
}

.btn-select-service {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    margin: 0 1.5rem 1.5rem;
}

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

.form-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.form-container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.editorial-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
}

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 4px;
    width: 100%;
}

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

.final-cta {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.final-cta h2,
.final-cta p {
    color: var(--white);
}

.btn-final-cta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-final-cta:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-sticky:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

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

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

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

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

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

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

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

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

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-header {
    padding: 4rem 0 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.services-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.service-detail-content {
    width: 100%;
}

.service-price-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-service {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.process-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.process-step {
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.btn-cta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

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

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.map-section {
    padding: 4rem 0;
}

.map-placeholder {
    background-color: var(--bg-alt);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.faq-contact-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 5rem 0;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-details {
    margin: 2.5rem 0;
}

.thanks-next {
    text-align: left;
    margin: 3rem 0;
}

.thanks-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.legal-page h2 {
    margin-top: 3rem;
}

.legal-page h3 {
    margin-top: 2rem;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

.cookie-table th {
    background-color: var(--bg-alt);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-table td {
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-image,
    .service-detail-content {
        width: 50%;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

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

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 16px;
    }

    .stats-inline {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .narrow-text,
    .hero-content-narrow,
    .form-container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-cards {
        flex-direction: row;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.67rem);
    }
}
