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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a202c;
    background-color: #f7fafc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: white;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid #cbd5e0;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #718096;
    padding: 0.3rem 0.8rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

.editorial-container {
    max-width: 100%;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-story,
.problem-section,
.insight-section,
.trust-section,
.testimonials-section,
.services-reveal,
.form-section,
.final-section {
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.article-body h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2d3748;
    font-weight: 600;
}

.inline-image {
    margin: 3rem 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-inline {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-text-link {
    font-size: 1.2rem;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2c5282;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d3748;
    border-left: 4px solid #3182ce;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.6;
}

.stat-cards {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    background-color: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.methodology-flow {
    margin: 2.5rem 0;
}

.method-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.method-step:last-child {
    border-bottom: none;
}

.testimonial {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 600;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3182ce;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15);
}

.service-card.featured {
    border-color: #3182ce;
    background-color: #ebf8ff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3182ce;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #1a202c;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #3182ce;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.editorial-form {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #48bb78;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-text {
    font-size: 1.3rem;
    text-align: center;
    color: #2d3748;
    font-style: italic;
    padding: 2rem;
    background-color: #edf2f7;
    border-radius: 8px;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #4a5568;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .article-body {
        padding: 2rem 1rem;
    }

    .stat-cards {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }

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