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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: #229954;
}

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

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-minimal {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.article-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.article-body {
    font-size: 19px;
    line-height: 1.8;
}

.article-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

.content-section {
    margin: 50px 0;
}

.content-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.content-section p {
    margin-bottom: 24px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary.large {
    padding: 20px 48px;
    font-size: 19px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #fff;
}

.highlight-section {
    background: #f8f9fa;
    padding: 40px;
    margin: 60px -40px;
    border-radius: 4px;
}

.insight-box {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.testimonial {
    font-size: 22px;
    font-style: italic;
    margin: 50px 0;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #27ae60;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #888;
}

.trust-section {
    padding: 60px 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-reveal {
    background: #fff;
    padding: 60px 40px;
    margin: 80px -40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: #27ae60;
    background: #f0fdf4;
}

.badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: #27ae60;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    font-size: 15px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-features span {
    padding-left: 20px;
    position: relative;
}

.service-features span:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a252f;
}

.form-container {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 6px;
}

.form-container h3 {
    margin-bottom: 8px;
}

.selected-service-info {
    margin-bottom: 30px;
    font-size: 17px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.urgency-section {
    background: #fff3cd;
    padding: 40px;
    margin: 60px -40px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin: 30px 0;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    color: #555;
}

.final-cta {
    text-align: center;
    padding: 80px 0;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

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

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

    .highlight-section,
    .services-reveal,
    .urgency-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

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

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