* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.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: 24px;
    font-weight: 600;
    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-content {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

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

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

.article-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.article-section ul,
.article-section ol {
    margin: 20px 0 20px 30px;
}

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

.inline-cta {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2c3e50;
}

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

.cta-link {
    display: inline-block;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.7;
}

.cta-link.secondary {
    color: #6c757d;
    border-bottom-color: #6c757d;
}

.highlight-box {
    background-color: #fff8e6;
    padding: 35px;
    border-radius: 4px;
    margin: 40px 0;
}

.highlight-box h2 {
    margin-top: 0;
    font-size: 28px;
}

.testimonial-inline {
    border-left: 4px solid #e9ecef;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 15px;
}

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

.services-overview {
    margin: 60px 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 15px;
}

.services-overview > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 25px 15px;
}

.service-select-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 10px 25px 25px;
}

.service-select-btn:hover {
    background-color: #1a252f;
}

.final-cta-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin: 60px -30px;
    border-radius: 8px;
}

.final-cta-section h2 {
    margin-top: 0;
    text-align: center;
}

.final-cta-section > p {
    text-align: center;
    margin-bottom: 40px;
}

.article-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-notice {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.form-notice p {
    font-size: 16px;
    margin-bottom: 8px;
}

.form-notice strong {
    color: #2c3e50;
}

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

.article-form input,
.article-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.article-form input:focus,
.article-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.submit-btn {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #1a252f;
}

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

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 20px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 0;
}

.services-detailed {
    margin: 40px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-image {
    margin-bottom: 30px;
    background-color: #f8f9fa;
}

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

.service-content h2 {
    margin-top: 0;
}

.service-content ul {
    margin: 20px 0 20px 25px;
}

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

.service-duration {
    font-style: italic;
    color: #6c757d;
    margin: 20px 0;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    flex: 1;
}

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

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

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

.contact-note {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.contact-note h3 {
    margin-top: 0;
    font-size: 20px;
}

.contact-note p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h2 {
    margin-top: 40px;
}

.service-confirmation {
    background-color: #d4edda;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
    border: 1px solid #c3e6cb;
}

.service-confirmation h3 {
    margin-top: 0;
    font-size: 18px;
    color: #155724;
}

.service-confirmation p {
    font-size: 16px;
    color: #155724;
    margin-bottom: 0;
    font-weight: 600;
}

.thanks-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

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

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

.legal-page .article-section p {
    font-size: 16px;
}

.legal-page .article-section li {
    font-size: 16px;
}

.legal-update {
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.cookie-table h3 {
    margin-top: 0;
    font-size: 18px;
}

.cookie-table p {
    font-size: 15px;
    margin-bottom: 8px;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    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: 14px;
    transition: color 0.2s;
}

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

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

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #495057;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

    .article-section h3 {
        font-size: 20px;
    }

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

    .final-cta-section {
        margin: 40px -20px;
        padding: 40px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}