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

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

.header-editorial {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.editorial-layout {
    min-height: calc(100vh - 300px);
}

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

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

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 50px 40px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.intro-section,
.problem-section,
.solution-section,
.benefits-section,
.trust-section {
    margin-bottom: 50px;
}

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

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3c3c3c;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.benefit-list {
    margin-top: 30px;
}

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

.testimonial-inline {
    background-color: #fafafa;
    border-left: 4px solid #d97706;
    padding: 25px 30px;
    margin: 30px 0;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.inline-cta {
    margin: 35px 0;
    text-align: center;
}

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

.btn-inline:hover {
    background-color: #b45309;
}

.services-preview {
    margin-top: 60px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    display: block;
    background-color: #f0f0f0;
}

.service-card h3 {
    padding: 20px 25px 10px;
    margin-bottom: 8px;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
}

.service-card .price {
    display: block;
    padding: 15px 25px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #d97706;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 15px 25px 25px;
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin-top: 60px;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 4px;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 14px 40px;
    background-color: #d97706;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 3px solid #d97706;
}

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

.footer-editorial {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.footer-info p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 25px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

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

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

.btn-accept {
    background-color: #d97706;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #b45309;
}

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

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

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.intro-lead {
    font-size: 22px;
    color: #666;
    font-weight: 300;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.legal-content a {
    color: #d97706;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.about-content h2 {
    margin-top: 45px;
}

.contact-content {
    margin-top: 30px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 35px 0;
    padding: 35px;
    background-color: #fafafa;
    border-radius: 4px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #d97706;
}

.info-item p {
    font-size: 16px;
    margin-bottom: 5px;
}

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

.service-detail {
    margin-bottom: 60px;
}

.service-detail h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.price-display {
    font-size: 24px;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 20px;
}

.service-detail .btn-select-service {
    width: auto;
    display: inline-block;
    margin: 20px 0;
}

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

.confirmation-box {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 4px;
    padding: 30px;
    margin: 35px 0;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #166534;
}

.confirmation-box p {
    color: #166534;
}

#serviceConfirmation {
    font-weight: 600;
    margin-top: 15px;
}

.next-steps {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .content-narrow {
        padding: 40px 20px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

    .contact-info-block {
        padding: 25px;
    }

    .next-steps {
        flex-direction: column;
    }

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