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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: #f7fafc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #2b6cb0;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

.editorial-main {
    background-color: #ffffff;
    padding: 2rem 0;
}

.hero-article {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-container {
    padding: 2rem 0;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.hero-image-wrapper {
    margin: 2rem 0 3rem 0;
}

.article-hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-lead {
    font-size: 1.375rem;
    font-weight: 400;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a202c;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.inline-image-block {
    margin: 2.5rem 0;
}

.inline-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    text-align: center;
}

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

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.btn-cta-inline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.insight-box {
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.insight-box p {
    margin-bottom: 0;
    color: #4a5568;
}

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

.testimonial {
    font-size: 1.125rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
}

.testimonial p {
    margin-bottom: 1rem;
}

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

.cta-section {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #e6f3ff;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2b6cb0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

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

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card > p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

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

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

.form-container {
    max-width: 650px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: #e6fffa;
    border: 1px solid #81e6d9;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.selected-service-info p {
    margin-bottom: 0.5rem;
    color: #234e52;
}

.selected-service-info p:last-child {
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #f0e7ff;
}

.btn-cta-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fffaf0;
    border: 1px solid #fbd38d;
    border-radius: 8px;
}

.disclaimer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #744210;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #744210;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
    color: #718096;
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(72,187,120,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(72,187,120,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-top: 1px solid #e2e8f0;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .article-title {
        font-size: 1.875rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .article-lead {
        font-size: 1.125rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.5rem;
    }

    .cta-section h3,
    .final-cta h3 {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}