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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #1a252f;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: #2d3e50;
    color: #fff;
}

.nav-footer {
    border-top: 1px solid #2d3e50;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-footer a {
    color: #7e8ea3;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

.main-content {
    margin-left: 260px;
    min-height: 100vh;
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.3;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #445566;
}

.content-narrow h2 {
    font-size: 34px;
    margin: 60px 0 24px;
    color: #1a252f;
    font-weight: 600;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.insight-box h3 {
    margin-top: 0;
    color: #2980b9;
}

.insight-box p {
    margin-bottom: 0;
}

.inline-cta {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 30px 0;
    transition: all 0.3s;
}

.inline-cta:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.testimonial-inline {
    background: #f8f9fa;
    border-left: 4px solid #95a5a6;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

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

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

.service-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateX(8px);
}

.service-card h3 {
    margin-top: 0;
    color: #1a252f;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 15px;
}

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

.service-select-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-section-editorial {
    background: #34495e;
    color: #fff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-section-editorial h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section-editorial p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.open-form-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.open-form-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.disclaimer-box {
    background: #fff5e6;
    border: 1px solid #ffe0b2;
    padding: 25px;
    border-radius: 6px;
    margin: 40px 0;
}

.disclaimer-box h4 {
    color: #e67e22;
    margin-bottom: 12px;
    font-size: 18px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.final-cta-editorial {
    text-align: center;
    margin: 60px 0 40px;
}

.footer {
    background: #1a252f;
    color: #b8c5d6;
    padding: 60px 30px 20px;
    margin-left: 260px;
}

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3e50;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #95a5a6;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #1a252f;
}

.modal-content > p {
    margin-bottom: 25px;
    color: #666;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-submit-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #229954;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
}

.sticky-cta .open-form-btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-btn,
.cookie-btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

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

    .content-narrow {
        padding: 40px 20px;
    }

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

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-cta .open-form-btn {
        width: 100%;
    }
}