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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f3460;
    --color-highlight: #e94560;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --spacing-unit: 1rem;
    --max-width: 720px;
    --max-width-wide: 1200px;
}

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: 17px;
}

.nav-minimal {
    background: var(--color-primary);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.editorial-hero {
    margin-bottom: 3.5rem;
    padding-top: 2rem;
}

.editorial-hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-top: 1.5rem;
}

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

.content-section h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.3rem;
    margin-top: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.content-text {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 6px;
    display: block;
}

.cta-inline {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.link-cta {
    color: var(--color-highlight);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--color-highlight);
    padding-bottom: 3px;
    transition: opacity 0.2s;
}

.link-cta:hover {
    opacity: 0.8;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

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

.service-card p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.btn-select-service {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: 6px;
}

.form-section h2 {
    margin-top: 0;
}

.form-intro {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

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

.btn-submit {
    background: var(--color-highlight);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #d63850;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 8px;
}

.cta-section h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-section a {
    color: #fff;
}

.btn-cta-large {
    display: inline-block;
    background: var(--color-highlight);
    color: #fff;
    padding: 1.1rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #d63850;
}

.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    flex: 1;
}

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

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.contact-info {
    margin: 2rem 0;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--color-text);
    line-height: 1.7;
}

.info-block a {
    color: var(--color-highlight);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.thanks-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-message a {
    color: var(--color-highlight);
    text-decoration: none;
}

.thanks-message a:hover {
    text-decoration: underline;
}

.thanks-cta {
    margin-top: 3rem;
}

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

.updated-date {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-content strong {
    color: var(--color-primary);
}

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

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

.faq-item p {
    color: var(--color-text);
    line-height: 1.7;
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-lead {
        font-size: 1.05rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

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

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

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

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

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