* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

.hero-editorial {
    max-width: 780px;
    margin: 60px auto 80px;
    padding: 0 30px;
}

.hero-content-narrow {
    margin-bottom: 50px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-image {
    margin: 0;
    background-color: #e9ecef;
}

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

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

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.35;
    color: #1a202c;
    margin: 60px 0 25px;
    font-weight: 700;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 22px;
}

.content-narrow ul,
.content-narrow ol {
    font-size: 18px;
    line-height: 1.75;
    color: #4a5568;
    margin: 22px 0 22px 30px;
}

.content-narrow li {
    margin-bottom: 12px;
}

.inline-image {
    margin: 50px 0;
    background-color: #e9ecef;
}

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

.inline-image figcaption {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 15px;
}

.testimonial-inline {
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 40px 0;
    background: #f8f9fa;
    font-size: 19px;
    line-height: 1.65;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #6c757d;
}

.cta-inline {
    margin: 45px 0;
    text-align: center;
}

.btn-text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-text-link:hover {
    color: #2980b9;
}

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

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    background: #6c757d;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #5a6268;
}

.services-editorial {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 30px;
}

.services-editorial .content-narrow {
    margin-top: 0;
    margin-bottom: 60px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    color: #1a202c;
    margin: 25px 25px 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0 25px 15px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px 20px;
}

.service-card .btn-secondary {
    margin: 0 25px 25px;
}

.service-detail {
    margin-bottom: 70px;
}

.service-detail img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #e9ecef;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.service-detail-content ul {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin: 18px 0 18px 25px;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 30px;
    margin: 80px 0;
}

.form-editorial {
    max-width: 600px;
    margin: 40px auto 0;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.2s;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 40px 0;
}

.contact-info {
    margin: 40px 0;
}

.contact-info h2 {
    font-size: 24px;
    color: #1a202c;
    margin: 35px 0 15px;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.email-display {
    font-size: 19px;
    font-weight: 600;
    color: #3498db;
}

.contact-note {
    font-size: 15px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 25px 0;
}

.thanks-page {
    text-align: center;
    padding: 80px 30px;
}

.thanks-page h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info ul {
    margin-top: 15px;
}

.thanks-info a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-page h1 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 26px;
    color: #2c3e50;
    margin: 45px 0 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page ul,
.legal-page ol {
    margin: 18px 0 18px 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page strong {
    font-weight: 600;
    color: #2c3e50;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #3498db;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

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

    .lead-text {
        font-size: 18px;
    }

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

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

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

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

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

    .service-cards-editorial {
        gap: 35px;
    }
}