/* Benefits Claims Intelligence - Main Stylesheet */

/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0d1f3c;
    --accent-color: #3182ce;
    --accent-hover: #2b6cb0;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    max-width: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

#logo {
    display: inline-block;
    z-index: 1000;
    margin: 0;
    padding: 12px 20px;
}

#logo img {
    max-height: 56px;
    transition: var(--transition);
    display: block;
}

#logo img:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
nav {
    padding: 0 20px;
    flex: 1;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 6px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: block;
    padding: 14px 18px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.menu > li > a:hover,
.menu > li:hover > a {
    background-color: rgba(255,255,255,0.1);
    border-bottom-color: var(--accent-color);
    text-decoration: none;
}

/* Dropdown Menus */
.menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    margin-top: -8px;
    padding-top: 16px;
}

.menu ul::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.menu li:hover > ul,
.menu ul:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu ul li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 0.95em;
    transition: var(--transition);
}

.menu ul li a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
    padding-left: 25px;
    text-decoration: none;
}

/* Header CTA Button */
#cta-container {
    padding-right: 20px;
}

.btn-header {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-header:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.85) 50%, rgba(49, 130, 206, 0.8) 100%),
                url('images/healthcare-analytics-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.25);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25em;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-hero-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Page Banner (for subpages) */
.page-banner {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.85) 100%);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    display: flex;
    justify-content: center;
}

.page-banner-content {
    max-width: 1100px;
    width: 100%;
}

.page-banner h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-banner p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Company Overview Section
   ============================================ */
.company-overview {
    background: var(--white);
    padding: 60px 40px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -40px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 20px rgba(13,31,60,0.04);
    position: relative;
    z-index: 10;
}

.overview-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.company-overview h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.company-overview p {
    color: var(--text-color);
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* ============================================
   Unified Grid Layout
   ============================================ */
.unified-grid {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--bg-light);
}

.unified-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    width: 100%;
}

.grid-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13,31,60,0.06);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.grid-card h3 {
    color: var(--primary-color);
    font-size: 1.25em;
    margin-bottom: 12px;
    font-weight: 600;
}

.grid-card > p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
    flex-grow: 1;
}

.grid-card a {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.grid-card a:hover {
    text-decoration: underline;
}

.content-section h3 {
    font-size: 1.25em;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.content-section > p {
    margin: 0 0 20px 0;
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.link-list li {
    margin: 0;
}

.link-list a {
    font-weight: 500;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    transition: var(--transition);
    text-decoration: none;
}

.link-list a:before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.link-list a:hover {
    color: var(--accent-hover);
    padding-left: 4px;
}

.link-list a:hover:before {
    opacity: 1;
}

/* ============================================
   Why BCI Section
   ============================================ */
.why-bci {
    background: var(--white);
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.why-bci-content {
    max-width: 1100px;
    width: 100%;
}

.why-bci h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.why-bci-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--bg-light);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.why-card h4 {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    color: var(--white);
}

.testimonials-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    opacity: 0.9;
    margin-bottom: 50px;
    font-size: 1.1em;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.testimonial-card blockquote {
    font-size: 1.05em;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95em;
    opacity: 0.9;
}

/* ============================================
   Results Section
   ============================================ */
.results-section {
    background: var(--bg-light);
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.results-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.results-section h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.result-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-item p {
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.5;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--primary-dark);
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    width: 100%;
}

.cta-section h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.btn-cta-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--white);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

/* ============================================
   Page Content Styles (for subpages)
   ============================================ */
.page-content {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--white);
}

.page-content-wrapper {
    max-width: 900px;
    width: 100%;
}

.page-content h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-content p {
    margin-bottom: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-content ul, .page-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Service Cards for Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
}

.service-card ul {
    margin-bottom: 0;
}

/* Process Steps for How It Works */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Team Section for About Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.team-card h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-card .title {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1em;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px 40px 20px;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 0.95em;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.link-white {
    color: #90cdf4 !important;
}

.link-white:hover {
    color: var(--white) !important;
    padding-left: 5px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.footer-legal a {
    color: #90cdf4;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
    .unified-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-bci-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        position: relative;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 0;
    }
    
    #logo {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav {
        width: 100%;
        padding: 0;
    }
    
    .menu {
        flex-direction: column;
        width: 100%;
    }
    
    .menu > li {
        width: 100%;
    }
    
    .menu > li > a {
        padding: 15px;
        text-align: center;
        width: 100%;
    }
    
    .menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        min-width: 100%;
        padding: 0;
        margin-top: 0;
    }
    
    .menu ul li a {
        color: var(--white);
        text-align: center;
        padding: 12px 20px;
    }
    
    #cta-container {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .unified-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .why-bci-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-content {
        padding: 40px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.7em;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    header, footer, .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
}
