:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #3498db;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e1e8ed;
    --font-primary: 'Georgia', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width-content: 680px;
    --spacing-unit: 1.5rem;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

h2 {
    font-size: 2rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

li {
    margin-bottom: 0.5rem;
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.editorial-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.editorial-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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

.editorial-image {
    margin: 3rem 0;
    width: 100%;
}

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

.editorial-image-inline {
    margin: 2.5rem 0;
}

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

.highlight-section {
    background-color: var(--color-bg-alt);
    padding: 2.5rem;
    margin: 3rem -2rem;
    border-left: 4px solid var(--color-accent);
}

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

.pullquote blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-primary);
}

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

.inline-cta {
    margin: 2rem 0;
}

.text-link-cta {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
    transition: opacity 0.2s;
}

.text-link-cta:hover {
    opacity: 0.8;
    text-decoration: none;
}

.inline-cta-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary, .btn-secondary, .btn-submit, .btn-sticky {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
}

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

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

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

.service-duration {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.service-price {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--color-accent);
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-style: normal;
    color: var(--color-text-light);
}

.editorial-form {
    margin: 2.5rem 0;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
    transition: border-color 0.2s;
}

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

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

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

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

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: white;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-column ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept, .btn-reject {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-sticky:hover {
    background-color: #2980b9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-detail {
    margin-bottom: 4rem;
}

.service-meta {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.content-list {
    margin: 1.5rem 0;
}

.content-list li {
    margin-bottom: 0.875rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

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

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.legal-page h2 {
    font-size: 1.75rem;
}

.legal-page h3 {
    font-size: 1.25rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

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

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
}

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

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

    .editorial-hero h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .highlight-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

    .pullquote blockquote {
        font-size: 1.25rem;
    }

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

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

    .btn-sticky {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

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

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

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

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

    .editorial-hero h1 {
        font-size: 1.75rem;
    }

    h1 {
        font-size: 1.75rem;
    }

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

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