/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Editorial Navigation */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.article-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

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

.article-body h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

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

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    display: block;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.7;
}

.benefits-list,
.action-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.benefits-list li,
.action-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* CTA Blocks */
.cta-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.cta-inline.secondary {
    background-color: #ecf8ff;
    border-left-color: #3498db;
}

.cta-inline h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.cta-inline p {
    margin-bottom: 1rem;
}

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

.final-cta h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Testimonials */
.testimonial-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    color: #34495e;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

.editorial-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Service Cards */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin: 2.5rem 0;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid #3498db;
}

.service-header {
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
}

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

.service-content {
    padding: 2rem;
}

.service-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-value {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* FAQ */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.comparison-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.comparison-note h2 {
    margin-top: 0;
}

/* Thanks Page */
.thanks-page .thanks-content {
    text-align: left;
}

.service-confirmation {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.service-confirmation h3 {
    margin-top: 0;
    color: #155724;
}

.selected-service {
    font-weight: 700;
    color: #155724;
    font-size: 1.125rem;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page .article-body {
    font-size: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer */
.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer h4 {
    color: #ecf0f1;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-column h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #95a5a6;
}

.footer-ad-notice {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

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

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(236, 240, 241, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

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

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

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
    }

    .editorial-content {
        padding: 2rem 1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-content {
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .thanks-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }
}
