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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    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;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #007bff;
}

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

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

.article-header h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.text-block {
    margin: 40px 0;
}

.text-block h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-block h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 25px 0 15px;
    font-weight: 600;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.text-block ul,
.text-block ol {
    margin: 20px 0;
    padding-left: 25px;
}

.text-block li {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.text-block a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.text-block a:hover {
    border-bottom-color: #007bff;
}

.inline-cta {
    margin: 45px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.cta-link {
    font-size: 19px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #0056b3;
}

.testimonial {
    margin: 50px 0;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 3px solid #34495e;
    font-size: 19px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

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

.services-cards {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-card li {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 20px 0 15px;
}

.select-service {
    padding: 12px 28px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #0056b3;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.form-section p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.disclaimer-box {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #856404;
    margin-bottom: 15px;
    font-weight: 600;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    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: 10px;
}

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

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

.references {
    padding-left: 20px;
}

.references li {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    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-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    font-size: 15px;
    color: #495057;
    flex: 1;
}

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

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

.cookie-btn.accept {
    background-color: #007bff;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.contact-info-box {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 3px solid #007bff;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

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

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

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

.legal-page .text-block {
    margin: 35px 0;
}

.legal-page h2 {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .text-block h2 {
        font-size: 24px;
    }

    .text-block p {
        font-size: 16px;
    }

    .services-cards {
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

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

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

    .editorial-content {
        margin: 40px auto;
    }
}