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

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

.nav-minimal {
    background-color: #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: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.article-image {
    margin: 50px 0;
    background-color: #f7fafc;
}

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

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

.article-section h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.article-section h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 28px;
    color: #2d3748;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #2c3e50;
}

.article-section ul,
.article-section ol {
    margin-left: 25px;
    margin-bottom: 18px;
}

.article-section li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #2c3e50;
}

.citation {
    color: #3182ce;
    text-decoration: none;
    font-size: 15px;
    margin-left: 2px;
}

.citation:hover {
    text-decoration: underline;
}

.inline-cta {
    background-color: #f7fafc;
    padding: 35px;
    margin: 50px 0;
    border-left: 4px solid #3182ce;
}

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

.cta-link {
    display: inline-block;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #2c5aa0;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 0 30px;
}

.testimonial-inline blockquote {
    border-left: 3px solid #cbd5e0;
    padding-left: 25px;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 15px;
    font-style: normal;
    color: #718096;
}

.services-embedded {
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    margin-bottom: 25px;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #cbd5e0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 18px 0;
}

.select-service {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #2c5aa0;
}

.select-service:active {
    transform: scale(0.98);
}

.select-service.selected {
    background-color: #38a169;
}

.form-section {
    background-color: #f7fafc;
    padding: 45px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-section p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a5568;
}

.editorial-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #3182ce;
}

.form-group input[readonly] {
    background-color: #edf2f7;
    color: #718096;
}

.submit-btn {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #2c5aa0;
}

.submit-btn:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

.submit-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.disclaimer-section {
    background-color: #fffaf0;
    border: 1px solid #fbd38d;
    padding: 25px;
    margin: 50px 0;
    font-size: 14px;
    color: #744210;
}

.disclaimer-section p {
    font-size: 14px;
    color: #744210;
}

.references-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.references-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2d3748;
}

.references-section ol {
    margin-left: 20px;
}

.references-section li {
    margin-bottom: 8px;
    font-size: 14px;
}

.references-section a {
    color: #3182ce;
    text-decoration: none;
}

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

.site-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 50px 30px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #cbd5e0;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    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;
    margin: 0;
    font-size: 14px;
    color: #e2e8f0;
}

.cookie-content a {
    color: #90cdf4;
}

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

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

.cookie-btn.accept {
    background-color: #38a169;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.cookie-btn:active {
    transform: scale(0.97);
}

.services-list {
    margin-top: 40px;
}

.service-detail {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-image {
    background-color: #f7fafc;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #2d3748;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

.legal-page .article-section {
    margin-bottom: 35px;
}

.cookie-table {
    background-color: #f7fafc;
    padding: 20px;
    margin: 15px 0;
    border-left: 3px solid #3182ce;
}

.cookie-table h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a202c;
}

.cookie-table p {
    font-size: 15px;
    color: #4a5568;
}

.no-link {
    color: #2c3e50;
}

.thanks-page .article-section ul {
    margin-left: 25px;
}

.thanks-page .article-section li {
    margin-bottom: 10px;
}

.thanks-page .article-section a {
    color: #3182ce;
    text-decoration: none;
}

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

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

    .form-section {
        padding: 30px 20px;
    }

    .inline-cta {
        padding: 25px 20px;
    }
}