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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #fffbea;
    color: #8b7109;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f0e5b8;
}

.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

.hero-editorial {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-editorial h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image-inline {
    max-width: 900px;
    width: 100%;
    margin: 60px auto 0;
    display: block;
    border-radius: 8px;
}

.content-narrow {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 24px;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #374151;
}

.content-narrow ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-narrow ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #374151;
}

.image-block-center {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

.content-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.testimonial-inline {
    max-width: 700px;
    margin: 80px auto;
    padding: 48px 40px;
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #6b7280;
    font-style: normal;
}

.services-list {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-card ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #6b7280;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin: 24px 0 8px;
}

.price-note {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 24px;
}

.btn-service {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #2563eb;
}

.cta-inline {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 24px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #1f2937;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #111827;
}

.btn-secondary {
    display: inline-block;
    background: #f3f4f6;
    color: #1f2937;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
    margin-left: 16px;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.disclaimer-section {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 32px;
    background: #fffbea;
    border-left: 4px solid #f59e0b;
}

.disclaimer {
    font-size: 14px;
    color: #78716c;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 80px;
    padding: 0 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    background: #1f2937;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.contact-info {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    padding: 32px;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-block p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f9fafb;
    border-radius: 12px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.thanks-service {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.legal-page .content-narrow {
    max-width: 800px;
}

.update-note {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 40px;
}

.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 24px 24px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-accept {
    background: #3b82f6;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #2563eb;
}

.btn-cookie-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #4b5563;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .content-narrow p {
        font-size: 16px;
    }

    .testimonial-inline {
        padding: 32px 24px;
    }

    .testimonial-inline p {
        font-size: 18px;
    }

    .service-card {
        padding: 24px;
    }

    .price-tag {
        font-size: 28px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .thanks-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .footer-content {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 60px 16px 40px;
    }

    .hero-editorial h1 {
        font-size: 28px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}