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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.editorial-flow {
    padding: 60px 0;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.content-section ul {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.7;
}

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

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

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

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

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

.image-break {
    margin: 70px 0;
    background-color: #f0f0f0;
}

.image-break figure {
    margin: 0;
}

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

.insight-box {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid #1a1a1a;
}

.insight-box h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

.insight-box ul {
    margin-left: 20px;
}

.services-editorial {
    margin: 70px 0;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-item {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

.service-item h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-select {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.form-section {
    background-color: #f8f8f8;
    padding: 60px 30px;
    margin: 70px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.editorial-form {
    max-width: 500px;
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

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

.disclaimer-box {
    background-color: #fff9e6;
    padding: 30px;
    margin: 50px 0;
    border-left: 3px solid #ffc107;
}

.disclaimer-box h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.footer-note {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

#service-confirmation {
    font-weight: 600;
    color: #1a1a1a;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-back:hover {
    background-color: #333333;
}

.contact-info {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-block .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-note {
    background-color: #f0f7ff;
    padding: 25px;
    margin: 40px 0;
    border-left: 3px solid #2196f3;
}

.contact-note h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-note a {
    color: #1a1a1a;
    font-weight: 500;
}

.update-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

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

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

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

.price-large {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 0 20px 0;
}

.cta-section {
    background-color: #f8f8f8;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.cookie-table th {
    background-color: #f5f5f5;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-actions-page {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
}

.cookie-actions-page h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

#current-consent-status {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

#reset-cookies {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .nav-inline {
        gap: 15px;
        font-size: 14px;
    }

    .service-item {
        padding: 25px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section {
        padding: 40px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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