* {
    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-color: #f8f9fa;
}

.ad-notice {
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-minimal {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 31px;
    z-index: 999;
}

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

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

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-header {
    margin-bottom: 50px;
    text-align: left;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.article-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

.article-image {
    margin: 50px 0;
    width: 100%;
    background-color: #e2e8f0;
}

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

.article-image-inline {
    margin: 40px 0;
    width: 100%;
    background-color: #e2e8f0;
}

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

.article-section {
    margin-bottom: 45px;
}

.article-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.article-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.article-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-section li {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 12px;
}

.article-section sup a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.article-section sup a:hover {
    text-decoration: underline;
}

.inline-cta {
    background-color: #f1f5f9;
    border-left: 4px solid #3b82f6;
    padding: 25px 30px;
    margin: 35px 0;
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1e293b;
}

.cta-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.inline-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #3b82f6;
    transition: all 0.2s;
}

.inline-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.highlight-box {
    background-color: #fef3c7;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

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

.services-preview {
    margin: 45px 0;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 25px;
}

.service-card-editorial h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.editorial-form {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

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

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

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

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

.submit-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    background-color: #f9fafb;
    border-top: 2px solid #e5e7eb;
    padding-top: 30px;
    margin-top: 60px;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    font-style: italic;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.article-footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.references {
    padding-left: 25px;
}

.references li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.references a {
    color: #3b82f6;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    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;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.service-details {
    background-color: #f9fafb;
    border-radius: 6px;
    padding: 30px;
    margin: 30px 0;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-details ul {
    margin: 15px 0;
}

.service-price {
    font-size: 19px;
    color: #1a1a1a;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.inline-cta-button {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
    margin-top: 15px;
}

.inline-cta-button:hover {
    background-color: #2563eb;
}

.contact-info-block {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.thanks-page {
    text-align: left;
}

.thanks-links {
    list-style: none;
    padding-left: 0;
}

.thanks-links li {
    margin-bottom: 15px;
}

.legal-page .article-section h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page .article-section h3 {
    font-size: 22px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

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

    .article-section h2 {
        font-size: 26px;
    }

    .article-section p,
    .article-section li {
        font-size: 17px;
    }

    .editorial-form {
        padding: 25px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}