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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-hero {
    position: relative;
    margin-bottom: 50px;
    background-color: #e9ecef;
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    color: #ffffff;
    padding: 50px 40px;
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-style: italic;
}

.article-body {
    margin-bottom: 60px;
}

.text-block {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 18px;
}

.text-block h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: #2c3e50;
}

.citation {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #1a3a6b;
    text-decoration: underline;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f8f9fa;
}

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

.image-caption {
    padding: 20px;
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 40px;
    margin: 50px 0;
    border-radius: 3px;
}

.insight-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
}

.insight-box p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 35px 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5aa0;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-reveal {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #495057;
}

.service-card-editorial {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #495057;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-item {
    font-size: 13px;
    padding: 6px 14px;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 180px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    padding: 12px 24px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

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

.select-service-btn.selected {
    background-color: #28a745;
}

.cta-editorial {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.cta-editorial h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.cta-editorial > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #495057;
}

.editorial-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-selection-display {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border: 2px dashed #dee2e6;
    margin-bottom: 30px;
    border-radius: 3px;
}

.selection-prompt {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.selected-service-info {
    font-size: 18px;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    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: #2c5aa0;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 30px;
    margin: 50px 0;
    border-radius: 3px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.references-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #dee2e6;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.references-list {
    list-style-position: outside;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #1a3a6b;
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 30px;
    margin-top: 80px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

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

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

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

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.thanks-page {
    max-width: 720px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 3px;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #28a745;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.thanks-page .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #2c5aa0;
    margin: 30px 0;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-page a:hover {
    background-color: #1a3a6b;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #495057;
}

.page-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.page-container ul,
.page-container ol {
    margin: 20px 0 20px 30px;
}

.page-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #495057;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-radius: 3px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .editorial-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 30px 15px 60px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .service-card-editorial {
        flex-direction: column;
        padding: 25px;
    }

    .service-price-box {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}