/* 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.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1a3a6b;
}

/* Editorial Navigation */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Article Layout */
.editorial-article {
    background-color: #ffffff;
}

.article-hero {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 600px;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 3rem 2rem 2rem;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subhead {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Reading Column - Editorial Style */
.reading-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-body {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.intro-graf {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.article-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

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

/* Inline Images */
.inline-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Editorial Quote */
.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid #2c5aa0;
    color: #2a2a2a;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: #6a6a6a;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
    border-left: 4px solid #2c5aa0;
}

.cta-box-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.cta-inline-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c5aa0;
}

.cta-inline-link:hover {
    color: #1a3a6b;
}

/* Visual Stats Block */
.visual-stat-block {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6a6a6a;
    max-width: 120px;
}

/* Testimonial Inline */
.testimonial-inline {
    background-color: #fafbfc;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-attribution {
    font-size: 1rem;
    font-weight: 500;
    color: #6a6a6a;
}

/* Service Cards Inline */
.service-embed {
    margin: 3rem 0;
}

.service-card-inline {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-inline h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-inline p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.price-inline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-select-service {
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary-large:hover {
    background-color: #1a3a6b;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2a2a2a;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Final CTA Section */
.final-cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.final-cta-section h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.final-cta-section p {
    margin-bottom: 2rem;
}

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

.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

/* Footer */
.editorial-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #808080;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px 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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

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

.btn-cookie.reject:hover {
    background-color: #4a4a4a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    display: none;
}

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

.btn-sticky {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #1a3a6b;
    box-shadow: 0 6px 16px rgba(44, 90, 160, 0.4);
    transform: translateY(-2px);
}

/* Page Header Simple */
.page-header-simple {
    padding: 3rem 0 2rem;
    background-color: #f8f9fa;
}

.page-header-simple h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Services Grid Editorial */
.services-grid-editorial {
    margin-top: 2rem;
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-detail-card.featured {
    border-color: #2c5aa0;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-card-header h2 {
    font-size: 1.875rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

/* FAQ Section */
.services-faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.services-faq-section h2 {
    margin-top: 0;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

/* Contact Info Block */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-item a {
    color: #2c5aa0;
    font-weight: 500;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2c5aa0;
    margin: 2rem 0;
}

.contact-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #fafbfc;
    border-radius: 8px;
    text-align: center;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

/* Thanks Page */
.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.125rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.next-steps-list {
    padding-left: 1.5rem;
}

.next-steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.thanks-cta {
    margin-top: 3rem;
}

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

.thanks-back-link {
    margin-top: 3rem;
}

.thanks-back-link a {
    color: #6a6a6a;
    font-size: 1rem;
}

/* Legal Pages */
.legal-page .reading-column {
    max-width: 800px;
}

.legal-update {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .hero-subhead {
        font-size: 1.125rem;
    }

    .reading-column {
        padding: 2rem 1.5rem;
    }

    .intro-graf {
        font-size: 1.2rem;
    }

    .article-body p {
        font-size: 1.05rem;
    }

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

    .visual-stat-block {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-header-simple h1 {
        font-size: 2.25rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-card-header h2 {
        font-size: 1.5rem;
    }
}
