:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e44ad;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --dark-gray: #555;
    --success-green: #27ae60;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

ul {
    list-style-position: inside;
    margin-bottom: 1.25rem;
}

ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.logo:hover {
    color: var(--secondary-color);
}

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

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

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

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

.hero-editorial {
    padding: 5rem 1.5rem 3rem;
    background-color: var(--light-bg);
    text-align: center;
}

.hero-editorial.hero-small {
    padding: 3rem 1.5rem 2rem;
}

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

.lead-text {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-top: 1rem;
}

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

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

figcaption {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.inline-image-small {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

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

.services-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.services-preview {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.services-intro {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.service-card-editorial {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-editorial h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-editorial p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

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

.btn-select-service {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.cta-inline {
    padding: 3rem 1.5rem;
}

.cta-box-narrow {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
}

.cta-box-narrow h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.cta-urgent {
    background-color: var(--accent-color);
}

.cta-small-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.btn-primary,
.btn-secondary,
.btn-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

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

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

.btn-large {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

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

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

.form-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-editorial {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    border: 1px 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);
}

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

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

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

.testimonial-quote {
    max-width: 680px;
    margin: 2.5rem auto;
    padding: 2rem;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.125rem;
    color: var(--dark-gray);
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

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

.final-cta-narrow {
    max-width: 680px;
    margin: 0 auto;
}

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

.small-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

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

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks-lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.thanks-next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

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

.thanks-contact-reminder {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--dark-gray);
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.contact-detail .note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

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

.legal-section ul {
    margin-left: 1.5rem;
    list-style-position: outside;
}

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

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

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

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

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

.faq-item p {
    margin-bottom: 0.5rem;
}

.services-detailed {
    padding: 4rem 1.5rem;
}

.service-detail-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    background-color: var(--light-bg);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-header h2 {
    margin: 0 0 1rem 0;
}

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

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.service-body ul {
    margin-left: 1.5rem;
    list-style-position: outside;
}

.service-note {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.values-section {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

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

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.team-section {
    padding: 4rem 1.5rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem 2rem;
    }

    .text-section,
    .cta-inline,
    .form-section {
        padding: 2rem 1rem;
    }

    .services-preview {
        padding: 3rem 1rem;
    }

    .cta-box-narrow {
        padding: 2rem 1.5rem;
    }

    .contact-form-editorial {
        padding: 2rem 1.5rem;
    }

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

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

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

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

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

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

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

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.875rem 1.5rem;
    }
}