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

: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: #e0e0e0;
    --max-width-narrow: 680px;
    --max-width-container: 1200px;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
}

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

.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg-alt);
}

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

.hero-content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: -1px;
}

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

.story-section {
    padding: 3rem 0;
}

.story-content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.story-content-narrow h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.story-content-narrow h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.story-content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-content-narrow strong {
    font-weight: 600;
    color: var(--color-primary);
}

.story-content-narrow em {
    font-style: italic;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

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

.inline-cta p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.btn-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.benefit-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.benefit-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
    border-radius: 4px;
}

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

.services-preview {
    margin: 2.5rem 0;
}

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

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

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

.service-card-inline p {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 1rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.editorial-form {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.form-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.form-note a {
    color: var(--color-accent);
    text-decoration: underline;
}

.disclaimer-section {
    background-color: var(--color-bg-alt);
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.confirmation-box {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.confirmation-box p {
    margin-bottom: 0.8rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: white;
    color: var(--color-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #ecf0f1;
}

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-content h1 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--color-secondary);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.gdpr-table thead {
    background-color: var(--color-bg-alt);
}

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

.gdpr-table th {
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .story-content-narrow h1 {
        font-size: 2rem;
    }

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

    body {
        font-size: 16px;
    }

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

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
    }

    .gdpr-table {
        font-size: 0.85rem;
    }

    .gdpr-table th,
    .gdpr-table td {
        padding: 0.6rem;
    }
}