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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

.editorial-header {
    margin-bottom: 48px;
    text-align: center;
}

.editorial-header h1 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
}

.editorial-image {
    margin: 48px 0;
    background-color: #e2e8f0;
}

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

.editorial-image-inline {
    margin: 36px 0;
    background-color: #e2e8f0;
}

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

.editorial-text {
    margin-bottom: 32px;
}

.editorial-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.editorial-text h2 {
    font-size: 28px;
    margin: 48px 0 24px 0;
    color: #1a202c;
    font-weight: 600;
}

.editorial-text h3 {
    font-size: 22px;
    margin: 32px 0 16px 0;
    color: #2d3748;
    font-weight: 600;
}

.editorial-text ul,
.editorial-text ol {
    margin: 24px 0 24px 24px;
}

.editorial-text li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.editorial-text a {
    color: #3182ce;
    text-decoration: underline;
}

.editorial-text a:hover {
    color: #2c5aa0;
}

.inline-cta {
    background-color: #f7fafc;
    padding: 32px;
    margin: 48px 0;
    text-align: center;
    border-left: 4px solid #4299e1;
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2d3748;
}

.cta-link {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #3182ce;
}

.testimonial-inline {
    background-color: #edf2f7;
    padding: 32px;
    margin: 48px 0;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: #4a5568;
}

.benefit-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

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

.service-card {
    background-color: #ffffff;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 16px;
}

.editorial-form {
    background-color: #ffffff;
    padding: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin: 48px 0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #4299e1;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

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

.service-detail {
    margin: 48px 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-image {
    margin-bottom: 24px;
    background-color: #e2e8f0;
}

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

.service-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-description {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 16px;
}

.service-duration {
    font-size: 15px;
    color: #718096;
    margin-top: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 20px;
}

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 48px 24px 24px 24px;
    margin-top: 64px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

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

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

.footer-section a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.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;
}

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

    .editorial-header h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .editorial-text p,
    .editorial-text li {
        font-size: 16px;
    }

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

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

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