* {
    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: #fafafa;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-cookie:hover {
    opacity: 0.9;
}

#cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-secondary {
    background-color: #7f8c8d;
    color: #fff;
}

.nav-editorial {
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    font-size: 15px;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    padding: 4px 8px;
    border: 1px solid #e1e8ed;
    border-radius: 3px;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.editorial-article {
    background-color: #fff;
}

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrap {
    margin-bottom: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.5;
}

.article-section {
    font-size: 18px;
    line-height: 1.8;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.article-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 600;
}

.article-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 20px;
}

.article-section ul,
.article-section ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.inline-image {
    margin: 40px 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

.article-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.article-quote p {
    font-size: 22px;
    color: #2c3e50;
    margin: 0;
}

.cta-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
}

.cta-inline p {
    margin-bottom: 25px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-secondary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-link:hover {
    background-color: #3498db;
    color: #fff;
}

.services-cards {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.service-card img {
    width: 100%;
    height: auto;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin: 15px 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-list {
    margin: 40px 0;
}

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

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

.service-detail-image {
    margin-bottom: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
}

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.form-container {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-container h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dce4ec;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    align-self: flex-start;
}

.testimonials {
    margin: 40px 0;
}

.testimonial {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 16px;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-section p {
    color: #856404;
    margin-bottom: 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-block p {
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.legal-content {
    font-size: 16px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 22px;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-message {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-service-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ecf0f1;
    font-size: 14px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .article-section {
        font-size: 17px;
    }

    .intro-text {
        font-size: 20px;
    }

    .article-section h2 {
        font-size: 28px;
    }

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}