* {
    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: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.nav-links a:hover {
    color: #1a1a1a;
}

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

.editorial-hero {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 480px;
    margin-bottom: 40px;
    background-color: #d4d4d4;
    overflow: hidden;
    border-radius: 3px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.editorial-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
}

.editorial-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #2a2a2a;
}

.editorial-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2a2a2a;
}

.editorial-image {
    margin: 45px 0;
    background-color: #e0e0e0;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 2px;
}

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

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

.cta-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #4a4a4a;
}

.service-selection-wrapper {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
}

.service-card {
    display: block;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    padding: 25px;
    background-color: #fff;
    transition: border-color 0.2s, background-color 0.2s;
}

.service-card:hover {
    border-color: #4a4a4a;
    background-color: #fafafa;
}

.service-card input[type="radio"] {
    display: none;
}

.service-card input[type="radio"]:checked + .card-content {
    opacity: 1;
}

.service-card input[type="radio"]:checked {
    & + .card-content h3 {
        color: #1a1a1a;
    }
}

.card-content {
    opacity: 0.75;
    transition: opacity 0.2s;
}

.service-card:hover .card-content {
    opacity: 1;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2a2a2a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 10px;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 40px;
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #6a6a6a;
}

.btn-submit {
    background-color: #2a2a2a;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

.disclaimer-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin: 50px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.disclaimer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.disclaimer-section p {
    font-size: 14px;
    margin-bottom: 0;
}

.references-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f5;
}

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

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

.references-section li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-section a {
    color: #4a4a4a;
    text-decoration: none;
}

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

.footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 40px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 40px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background-color: #2a2a2a;
    color: #fff;
}

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

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

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

.thanks-message {
    text-align: center;
    padding: 80px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-message .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.thanks-message .btn-home:hover {
    background-color: #1a1a1a;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .editorial-title {
        font-size: 32px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}