/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

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

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Editorial Story Layout - Narrow Centered Content */
.editorial-content {
    max-width: 100%;
}

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

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 4rem 0;
    text-align: center;
}

.hero-text-centered {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.hero-editorial h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.hero-image {
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Story Sections */
.story-section,
.insight-section,
.feature-story,
.services-overview,
.form-section,
.trust-section,
.final-cta,
.intro-section,
.services-detailed,
.comparison-section,
.contact-info-section,
.map-section,
.faq-section,
.alternative-contact,
.cta-section,
.thanks-section,
.testimonial-section,
.values-section,
.team-section,
.mission-section,
.impact-section {
    padding: 4rem 0;
}

.story-section h2,
.insight-section h2,
.feature-story h2,
.services-overview h2,
.form-section h2,
.trust-section h2,
.final-cta h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.story-section p,
.insight-section p,
.feature-story p,
.intro-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

/* Dark Background Sections */
.dark-bg {
    background-color: #1e293b;
    color: #e2e8f0;
    margin: 4rem 0;
    padding: 4rem 2rem;
}

.dark-bg h2,
.dark-bg h3 {
    color: #ffffff;
}

.dark-bg p {
    color: #cbd5e1;
}

/* Split Feature Sections */
.split-feature {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.feature-text,
.feature-visual {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.feature-visual img {
    border-radius: 8px;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .price {
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1.5rem 0;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.service-card.featured .service-features li {
    color: #e2e8f0;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-card.featured .service-features li:before {
    color: #ffffff;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    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: #2563eb;
}

/* Buttons and CTAs */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-primary-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary,
.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover,
.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-primary-large {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-inline {
    margin: 2rem 0;
    text-align: center;
}

/* Testimonials */
.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

.dark-bg .testimonial {
    background-color: #334155;
    border-left-color: #60a5fa;
}

.testimonial blockquote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #334155;
}

.dark-bg .testimonial blockquote {
    color: #e2e8f0;
}

.testimonial cite {
    font-size: 0.875rem;
    font-style: normal;
    color: #64748b;
    font-weight: 600;
}

.dark-bg .testimonial cite {
    color: #94a3b8;
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #334155;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* Legal Pages */
.legal-page .legal-section {
    padding: 2rem 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Service Detail Pages */
.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.featured-service {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid #2563eb;
}

/* Comparison Guide */
.comparison-guide {
    margin: 2rem 0;
}

.guide-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: #334155;
    border-radius: 6px;
}

.guide-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.125rem;
}

.guide-item p {
    color: #cbd5e1;
    margin: 0;
}

/* Contact Page */
.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-item p {
    line-height: 1.8;
    color: #475569;
}

.contact-item .note {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
}

.contact-options {
    margin: 2rem 0;
}

.option-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 6px;
}

.option-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.option-item p {
    color: #475569;
    margin: 0;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.thanks-details p {
    margin: 0;
    font-size: 1.125rem;
    color: #334155;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
}

.next-steps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2563eb;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.support-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.support-note p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Value Items */
.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

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

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

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

    .split-feature {
        flex-direction: column;
        gap: 2rem;
    }

    .split-feature.reverse {
        flex-direction: column;
    }

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

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

    .stats-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-editorial h1 {
        font-size: 1.75rem;
    }

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