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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

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

.article-hero {
    margin: 0 -24px 48px -24px;
    position: relative;
    overflow: hidden;
    background-color: #1a202c;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.article-intro {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 21px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    margin-top: 28px;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 17px;
}

.content-block ul {
    margin-left: 28px;
    margin-bottom: 18px;
}

.content-block li {
    margin-bottom: 10px;
    font-size: 17px;
}

.inline-image-right {
    float: right;
    width: 48%;
    margin: 0 0 24px 32px;
    background-color: #f7fafc;
}

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

.inline-image-left {
    float: left;
    width: 48%;
    margin: 0 32px 24px 0;
    background-color: #f7fafc;
}

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

.centered-cta {
    text-align: center;
    margin: 56px 0;
}

.cta-inline {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a202c;
}

.highlight-box {
    background-color: #edf2f7;
    padding: 32px;
    border-left: 4px solid #4a5568;
    margin: 40px 0;
}

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
}

.service-card {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e2e8f0;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

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

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 16px 0;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #4a5568;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select.selected {
    background-color: #2d3748;
}

.testimonial {
    background-color: #ffffff;
    padding: 28px;
    margin: 28px 0;
    border-left: 3px solid #cbd5e0;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    color: #4a5568;
}

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

.form-section {
    background-color: #f7fafc;
    padding: 40px 32px;
    margin: 56px -24px 48px -24px;
}

.form-section h2 {
    margin-bottom: 16px;
}

.editorial-form {
    margin-top: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fffaf0;
    padding: 28px;
    margin: 48px 0;
    border: 1px solid #fbd38d;
    border-radius: 6px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #744210;
}

.editorial-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 48px 5%;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.footer-info {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px 5%;
    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: 32px;
}

.cookie-content p {
    font-size: 15px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.page-header {
    margin-bottom: 48px;
}

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

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

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
}

.step {
    background-color: #f7fafc;
    padding: 28px;
    border-radius: 8px;
    text-align: left;
}

.step h3 {
    margin-top: 0;
}

.cta-back {
    margin-top: 48px;
    text-align: center;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.approach-item {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
}

.approach-item h3 {
    margin-top: 0;
}

.cta-centered {
    text-align: center;
    margin-top: 48px;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background-color: #f7fafc;
    padding: 36px;
    border-radius: 8px;
}

.service-detail-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
}

.service-description {
    margin-bottom: 28px;
}

.contact-info {
    margin-top: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 28px;
}

.contact-item {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.legal-section {
    margin-top: 56px;
}

.legal-page {
    max-width: 800px;
}

.update-date {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.cookie-table {
    margin-top: 24px;
}

.cookie-row {
    background-color: #f7fafc;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 6px;
}

.cookie-name {
    margin-bottom: 12px;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .inline-image-right,
    .inline-image-left {
        float: none;
        width: 100%;
        margin: 24px 0;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}