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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #8b5a3c;
    --accent-color: #f4ede4;
    --dark-color: #1a1a1a;
    --light-gray: #f8f8f8;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #4a7c59;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    background-color: #fff;
}

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

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

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

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

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
}

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

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

.hero-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.editorial-hero-simple {
    padding: 4rem 1.5rem 2rem;
    background-color: var(--light-gray);
}

.editorial-hero-simple .text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.editorial-section {
    padding: 3rem 1.5rem;
}

.editorial-section.bg-light {
    background-color: var(--light-gray);
}

.editorial-section.bg-accent {
    background-color: var(--accent-color);
}

.editorial-section.bg-dark {
    background-color: var(--dark-color);
    color: #fff;
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark p,
.editorial-section.bg-dark label {
    color: #fff;
}

.text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.text-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.text-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.editorial-section.bg-dark .text-narrow h2 {
    color: #fff;
}

.editorial-image-section {
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

.inline-cta:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

.stat-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.service-card-editorial {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

.service-card-editorial p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.btn-select-service {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.testimonial-editorial {
    background-color: var(--light-gray);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.testimonial-editorial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-editorial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-submit {
    background-color: var(--success-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #3a6248;
}

.closing-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

.footer-minimal {
    background-color: var(--dark-color);
    color: #fff;
    padding: 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-cookie-reject {
    background-color: #666;
    color: #fff;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.services-detailed-section {
    padding: 2rem 1.5rem;
}

.service-detailed {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-text ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.service-text li {
    margin-bottom: 0.5rem;
}

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

.service-note {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin: 1rem 0;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary-large {
    background-color: var(--success-color);
    color: #fff;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #3a6248;
    color: #fff;
}

.service-detailed.featured {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    line-height: 1.6;
}

.contact-note {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.thanks-section {
    padding: 4rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-list {
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
}

.thanks-list li {
    margin-bottom: 0.75rem;
}

.thanks-note {
    margin: 2rem 0;
    font-size: 0.95rem;
}

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

.legal-page {
    padding: 2rem 1.5rem;
}

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

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-page ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

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

    .nav-minimal {
        padding: 1rem 1.5rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-image-wrapper {
        height: 250px;
    }

    .hero-text-narrow {
        padding: 2rem 1.5rem;
    }

    .text-narrow h2 {
        font-size: 1.6rem;
    }

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

    .service-detailed {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .service-price-large {
        font-size: 1.8rem;
    }

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

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

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

    .contact-grid {
        gap: 2rem;
    }

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

    .thanks-cta a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}