* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
    background-color: #ffffff;
}

.hero-editorial {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

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

.hero-subtext {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
    font-style: italic;
}

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

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

.editorial-section {
    margin-bottom: 40px;
}

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

.editorial-section h3 {
    font-size: 26px;
    margin-bottom: 18px;
    margin-top: 35px;
    font-weight: 600;
    color: #2c3e50;
}

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

.editorial-section a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: opacity 0.3s ease;
}

.editorial-section a:hover {
    opacity: 0.7;
}

.testimonial-editorial {
    background-color: #f9f9f9;
    padding: 35px 40px;
    margin: 50px 0;
    border-left: 4px solid #3498db;
}

.testimonial-editorial blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
}

.testimonial-editorial footer {
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.form-editorial {
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 35px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.references-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.references-list {
    padding-left: 25px;
}

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

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card {
    margin: 40px 0;
    padding: 35px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-image {
    margin-bottom: 25px;
    background-color: #f5f5f5;
}

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

.service-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info-block {
    margin: 40px 0;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.small-note {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 8px;
}

.thanks-message {
    text-align: center;
    padding: 40px 0;
}

.legal-page .editorial-section {
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #34495e;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-minimal {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 30px;
    text-align: center;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 13px;
    color: #95a5a6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

    .hero-subtext {
        font-size: 18px;
    }

    .editorial-section h2 {
        font-size: 26px;
    }

    .editorial-section h3 {
        font-size: 22px;
    }

    .editorial-section p {
        font-size: 17px;
    }

    .testimonial-editorial {
        padding: 25px 20px;
    }

    .form-editorial {
        padding: 25px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .btn-cookie {
        width: 100%;
    }

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