/* 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: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

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

a:hover {
    color: #1d4ed8;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #4a4a4a;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9375rem;
    color: #6b6b6b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

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

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

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

/* Navigation - Minimal Top Nav */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #4a4a4a;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Editorial Container - Narrow Centered Content */
.editorial-container {
    width: 100%;
    min-height: 100vh;
}

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

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

.hero-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Editorial Sections */
.editorial-section {
    padding: 3rem 0;
}

.editorial-section.bg-light {
    background-color: #f9fafb;
    padding: 3rem 5%;
}

.section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Inline CTAs within content */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

/* Benefit Blocks */
.benefit-block {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
}

.benefit-block h3 {
    margin-top: 0;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f3f4f6;
    padding: 3rem 5%;
}

/* Service Cards - Stacked in editorial style */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2563eb;
    background-color: #f8faff;
}

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

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Service Detail Cards */
.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.service-detail-card.featured-service {
    border: 2px solid #2563eb;
    background-color: #f8faff;
    position: relative;
}

.service-badge {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-detail-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0 1.5rem;
}

.service-detail-card h2 {
    margin-top: 0;
}

.service-detail-card h3 {
    font-size: 1.125rem;
    margin-top: 2rem;
}

.service-detail-card ul {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

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

.btn-text {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.btn-text:hover {
    border-bottom-color: #2563eb;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 0.875rem;
    margin-top: 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* Forms - Editorial Style */
.editorial-form {
    margin: 2.5rem 0;
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.header-lead {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 0;
}

/* Contact Info Blocks */
.contact-info-block {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1rem 0;
    line-height: 1.6;
}

/* FAQ Items */
.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.thanks-message {
    margin: 2rem 0;
}

.thanks-lead {
    font-size: 1.375rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.next-steps {
    margin: 2rem 0;
}

.step-item {
    margin: 1.5rem 0;
}

.step-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    align-items: flex-start;
}

/* Resource Cards */
.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.75rem;
}

.resource-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Policy Sections */
.policy-section {
    padding: 2rem 0 3rem;
}

.policy-section h2 {
    margin-top: 3rem;
}

.policy-section h2:first-of-type {
    margin-top: 1rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 5%;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-content p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive - Mobile First Approach */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e5e5;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 5%;
    }

    .editorial-hero {
        padding: 2.5rem 0 2rem;
    }

    .editorial-section {
        padding: 2rem 0;
    }

    .editorial-section.bg-light {
        padding: 2rem 5%;
    }

    .content-narrow {
        padding: 0 1rem;
    }

    .hero-narrow {
        padding: 0 1rem;
    }

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

    .service-price {
        font-size: 1.75rem;
    }

    .service-detail-price {
        font-size: 1.875rem;
    }

    blockquote {
        font-size: 1.125rem;
        padding-left: 1rem;
        margin: 2rem 0;
    }

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

    .cookie-actions {
        flex-direction: row;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .content-narrow {
        max-width: 720px;
    }

    .hero-narrow {
        max-width: 720px;
    }
}

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-actions {
        flex-direction: row;
    }
}
