/* Reset and Base Styles */
* {
    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: #2d2d2d;
    background-color: #fafafa;
    font-size: 18px;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6e;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-content a {
    color: #8ab4f8;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3a6e;
}

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2d2d2d;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1a5490;
}

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.article-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 22px;
    color: #5a5a5a;
    font-weight: 400;
    line-height: 1.4;
}

.article-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
}

/* Content Blocks */
.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
    margin-top: 25px;
}

.content-block p {
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-block ul,
.content-block ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-block li {
    margin-bottom: 10px;
    color: #3a3a3a;
}

blockquote {
    border-left: 4px solid #1a5490;
    padding-left: 25px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: #2d2d2d;
    line-height: 1.5;
}

/* Inline Images */
.inline-image {
    margin: 50px 0;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
}

.inline-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: #6a6a6a;
    text-align: center;
    font-style: italic;
}

/* Highlight Box */
.highlight-box {
    background-color: #f0f7ff;
    border-left: 5px solid #1a5490;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.stat-large {
    font-size: 56px;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-box p {
    font-size: 18px;
    color: #3a3a3a;
    margin: 0;
}

/* Inline CTAs */
.inline-cta {
    margin: 30px 0;
    text-align: center;
}

.cta-link {
    font-size: 19px;
    font-weight: 600;
    color: #1a5490;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #0d3a6e;
    border-bottom-color: #0d3a6e;
}

/* Testimonials Inline */
.testimonial-inline {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 35px;
    margin: 50px 0;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-style: italic;
}

cite {
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 10px;
    margin-top: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 17px;
    color: #3a3a3a;
}

/* Lists */
.microsteps-list,
.process-list,
.science-list,
.selection-guide {
    background-color: #ffffff;
    border-left: 3px solid #1a5490;
    padding: 25px 25px 25px 45px;
    margin: 25px 0;
}

.microsteps-list li,
.process-list li,
.science-list li,
.selection-guide li {
    margin-bottom: 15px;
}

/* Services Inline */
.services-inline {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: #1a5490;
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.1);
}

.service-card-editorial.featured {
    border-color: #1a5490;
    border-width: 3px;
    background-color: #f0f7ff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #1a5490;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card-editorial h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-desc {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

/* Buttons */
.btn-service,
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-service,
.btn-primary {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-service:hover,
.btn-primary:hover {
    background-color: #0d3a6e;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-submit {
    background-color: #1a5490;
    color: #ffffff;
    width: 100%;
    font-size: 18px;
    padding: 16px 32px;
}

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

/* CTA Blocks */
.cta-block-center {
    text-align: center;
    background-color: #1a5490;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-block-center h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-block-center .btn-primary {
    background-color: #ffffff;
    color: #1a5490;
}

.cta-block-center .btn-primary:hover {
    background-color: #f0f7ff;
}

/* Urgency Box */
.urgency-box {
    background-color: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 6px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.urgency-text {
    font-size: 22px;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 10px;
}

.urgency-subtext {
    font-size: 17px;
    color: #5a5a5a;
    margin: 0;
}

/* FAQ */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 19px;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 0;
}

.faq-item p {
    margin: 0;
    font-size: 17px;
    color: #3a3a3a;
}

/* Forms */
.editorial-form {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

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

.editorial-form input[type="text"],
.editorial-form input[type="email"],
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.editorial-form textarea {
    resize: vertical;
}

/* Final CTA Editorial */
.final-cta-editorial {
    background-color: #f8f9fa;
    border: 3px solid #1a5490;
    border-radius: 8px;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.final-cta-editorial h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.final-cta-editorial p {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 35px;
}

/* Services Detailed */
.services-detailed {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.featured-service {
    border-color: #1a5490;
    border-width: 3px;
}

.badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff9800;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background-color: #f8f9fa;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 30px;
    color: #1a1a1a;
    margin: 0;
}

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #1a5490;
    margin: 0;
}

.service-body {
    padding: 35px 40px;
}

.service-intro {
    font-size: 19px;
    color: #2d2d2d;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-body h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-body ul {
    margin-bottom: 25px;
}

.service-body li {
    margin-bottom: 12px;
    font-size: 17px;
}

.capacity-note {
    background-color: #fff3e0;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    color: #e65100;
    font-weight: 600;
    margin-top: 20px;
}

.btn-featured {
    background-color: #ff9800;
}

.btn-featured:hover {
    background-color: #f57c00;
}

/* Included Benefits */
.included-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.included-item {
    background-color: #f0f7ff;
    border-left: 4px solid #1a5490;
    padding: 20px;
    border-radius: 4px;
}

.included-item h4 {
    font-size: 19px;
    color: #1a5490;
    margin: 0 0 10px 0;
}

.included-item p {
    margin: 0;
    font-size: 16px;
    color: #3a3a3a;
}

/* Comparison Note */
.comparison-note {
    background-color: #f8f9fa;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    margin: 50px 0;
}

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

.comparison-note p {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 25px;
}

/* Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-item {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
}

.contact-item h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-item p {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.contact-item a {
    color: #1a5490;
    font-weight: 500;
}

.contact-note {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 10px;
}

.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.reason-box {
    background-color: #ffffff;
    border-left: 4px solid #1a5490;
    padding: 20px;
    border-radius: 4px;
}

.reason-box h4 {
    font-size: 19px;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.reason-box p {
    margin: 0;
    font-size: 16px;
    color: #3a3a3a;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f0f7ff;
    border: 2px solid #1a5490;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

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

.selected-service {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0;
}

.next-steps {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    margin-bottom: 20px;
    font-size: 17px;
    color: #3a3a3a;
}

.thanks-info {
    background-color: #fff9e6;
    border-left: 4px solid #ff9800;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

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

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
}

.policy-date {
    font-size: 16px;
    color: #6a6a6a;
    font-style: italic;
}

.gdpr-right {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
}

.gdpr-right h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 12px;
    margin-top: 0;
}

.gdpr-right p {
    margin: 0;
    font-size: 17px;
    color: #3a3a3a;
}

.cookie-category {
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.cookie-category h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.cookie-category ul {
    margin: 15px 0;
}

.cookie-note {
    background-color: #fff9e6;
    padding: 12px;
    border-radius: 4px;
    font-size: 15px;
    color: #5a5a5a;
    margin-top: 15px;
}

/* Footer */
.footer-editorial {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 50px 20px 30px;
    margin-top: 80px;
}

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

.footer-main {
    margin-bottom: 30px;
}

.footer-main p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-tagline {
    color: #a0a0a0;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a5490;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta span {
    font-size: 16px;
    font-weight: 500;
}

.btn-sticky {
    background-color: #ffffff;
    color: #1a5490;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #f0f7ff;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
    }

    .editorial-container {
        padding: 40px 15px;
    }

    .article-header h1 {
        font-size: 36px;
    }

    .subheadline {
        font-size: 19px;
    }

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

    .content-block h2 {
        font-size: 28px;
    }

    .content-block h3 {
        font-size: 22px;
    }

    .stat-large {
        font-size: 42px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
    }

    .service-header h3 {
        font-size: 26px;
    }

    .service-price-large {
        font-size: 32px;
    }

    .service-body {
        padding: 25px 20px;
    }

    .badge-large {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 14px;
    }

    .editorial-form {
        padding: 30px 20px;
    }

    .cta-block-center {
        padding: 35px 25px;
    }

    .final-cta-editorial {
        padding: 35px 25px;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        bottom: 10px;
        right: 10px;
        left: 10px;
        border-radius: 12px;
    }

    .sticky-cta span {
        font-size: 15px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1 1 calc(50% - 20px);
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 19px;
    }

    .article-header h1 {
        font-size: 56px;
    }

    .subheadline {
        font-size: 24px;
    }
}