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

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e8f4f8;
    --text: #2d3436;
    --light: #f8f9fa;
    --border: #dfe6e9;
    --highlight: #0984e3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.65rem 1.5rem;
    border: none;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

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

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

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

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

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

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    text-align: center;
    padding: 3rem 0 4rem;
}

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

.hero-editorial .lead {
    font-size: 1.35rem;
    color: var(--secondary);
    line-height: 1.6;
}

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

.content-section.bg-light {
    background: var(--light);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-section.bg-accent {
    background: var(--accent);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.text-block.centered {
    text-align: center;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.btn-text {
    color: var(--highlight);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.25rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-text:hover {
    border-bottom-color: transparent;
}

.btn-text.large {
    font-size: 1.3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(9, 132, 227, 0.3);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

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

.insight-card {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid var(--highlight);
    border-radius: 6px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    color: var(--primary);
}

.insight-card p {
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1.6;
}

.testimonial {
    padding: 2.5rem;
    background: var(--light);
    border-left: 5px solid var(--primary);
    margin: 3rem 0;
    font-style: italic;
}

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

.testimonial cite {
    font-style: normal;
    color: var(--secondary);
    font-weight: 600;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 3rem 0;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    color: var(--primary);
}

.service-item p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.service-item .price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
}

.benefits-list {
    margin: 2.5rem 0;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--highlight);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-row p {
    font-size: 1.1rem;
    margin: 0;
}

.main-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--highlight);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.3);
}

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(44, 62, 80, 0.5);
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .content-section.bg-light,
    .content-section.bg-accent {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .hero-editorial .lead {
        font-size: 1.15rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .main-form {
        padding: 1.5rem;
    }

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

    .btn-sticky {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}