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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #4a5568;
}

.ad-notice {
    font-size: 12px;
    color: #718096;
    background-color: #f7fafc;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a202c;
}

.main-content {
    min-height: calc(100vh - 400px);
}

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

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

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

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

.hero-image,
.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
    background-color: #f7fafc;
}

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

.content-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a202c;
    margin: 50px 0 24px 0;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2d3748;
    margin: 30px 0 16px 0;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
    color: #4a5568;
    font-size: 18px;
    line-height: 1.8;
}

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

.highlight-box {
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box p {
    color: #2d3748;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

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

.cta-text {
    font-size: 20px;
    color: #2d3748;
    margin: 0;
}

.cta-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3182ce;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2c5282;
    border-bottom-color: #2c5282;
}

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

.service-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

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

.service-item h3 {
    font-size: 24px;
    color: #1a202c;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

.btn-service {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2c5282;
}

.service-item-detailed {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-item-detailed h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
}

.price-detailed {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 24px 0;
}

.btn-service-detailed {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-service-detailed:hover {
    background-color: #2c5282;
}

.testimonial {
    background-color: #f7fafc;
    border-left: 4px solid #805ad5;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
    font-size: 16px;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    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: #3182ce;
}

.btn-submit {
    background-color: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer {
    background-color: #fffaf0;
    border: 1px solid #f6ad55;
    border-radius: 6px;
    padding: 24px;
    margin: 50px 0 20px 0;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #744210;
    margin-bottom: 10px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.contact-info-box {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info-box h2 {
    font-size: 24px;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    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: 30px;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #3182ce;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2c5282;
}

.btn-cookie.secondary {
    background-color: #4a5568;
}

.btn-cookie.secondary:hover {
    background-color: #718096;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}

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

    .ad-notice {
        font-size: 11px;
    }
}