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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1000px;
    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;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background: #0066cc;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-cookie:hover {
    background: #0052a3;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #ffffff;
}

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

.nav-minimal {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-layout {
    max-width: 100%;
}

.hero-editorial {
    max-width: 720px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.hero-content-narrow {
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.hero-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    margin: 4rem 0;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.1rem 0 0;
    color: #0066cc;
}

.narrow-column h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.narrow-column h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.narrow-column h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.cta-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-link:hover {
    text-decoration: underline;
}

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

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

.inline-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
}

blockquote {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    font-size: 1.15rem;
    font-style: italic;
    color: #2c2c2c;
}

.highlight-box {
    margin: 3rem 0;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 6px;
}

.highlight-box h3 {
    margin-top: 0;
}

.pillar-list {
    list-style: none;
    margin-top: 1.5rem;
}

.pillar-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pillar-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.btn-primary-editorial {
    display: inline-block;
    margin: 2rem 0;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: background 0.2s;
}

.btn-primary-editorial:hover {
    background: #0052a3;
}

.service-card-editorial {
    margin: 3rem 0;
    padding: 2.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.6rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
}

.service-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.stats-editorial {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-top: 0.5rem;
}

.faq-editorial {
    margin: 2rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h4 {
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a4a4a;
}

.final-cta-section {
    margin: 4rem 0 2rem;
    text-align: center;
}

.final-cta-section h2 {
    margin-bottom: 1rem;
}

.editorial-form {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit-editorial {
    width: 100%;
    padding: 1.1rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-editorial:hover {
    background: #0052a3;
}

.footer-editorial {
    margin-top: 6rem;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

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

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

.footer-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #0066cc;
}

.footer-note {
    font-size: 0.9rem;
    color: #6a6a6a;
}

.page-header {
    max-width: 720px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.page-content {
    max-width: 720px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.75rem 0;
    font-size: 1.05rem;
}

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

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin: 0.5rem 0;
}

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

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

    .narrow-column,
    .hero-editorial {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .stats-editorial {
        flex-direction: column;
        gap: 2rem;
    }

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

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