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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b5;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

.main-nav {
    background-color: var(--bg-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 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-content {
    min-height: 100vh;
}

.hero-editorial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 2rem 4rem;
    margin-bottom: 3rem;
}

.hero-text-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.article-body {
    padding: 0 2rem 4rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.article-narrow h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.article-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inline-cta {
    margin: 3rem 0;
    text-align: center;
}

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

.inline-cta-secondary p {
    margin-bottom: 0;
}

.inline-cta-secondary a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin: 0.5rem;
    font-size: 1rem;
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.content-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.content-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-box {
    background-color: #fff8e1;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--accent-color);
}

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

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.btn-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

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

.form-container {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    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 {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.faq-section {
    margin: 3rem 0;
}

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

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.final-cta {
    text-align: center;
    margin: 5rem 0 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.final-cta h2 {
    margin-top: 0;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

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

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

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

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

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

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
    transition: transform 0.2s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.service-detail {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-detail h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 0;
}

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

.contact-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.legal-page .article-narrow {
    max-width: 900px;
}

.legal-footer-links {
    text-align: center;
    margin: 4rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 1rem;
}

.legal-footer-links a:hover {
    text-decoration: underline;
}

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

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

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

.thanks-container {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    margin: 2rem 0;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-details h2 {
    margin-top: 0;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.thanks-testimonial {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

.contact-quick {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.contact-quick a {
    color: var(--secondary-color);
}

.final-thanks {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .article-narrow {
        padding: 0 1rem;
    }

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

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .service-cards {
        gap: 1.5rem;
    }

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

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

@media (min-width: 769px) {
    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-info {
        flex-direction: row;
    }

    .contact-item {
        flex: 1;
    }
}