/* Reset and Base Styles */
:root {
    --primary-navy: #1a1a1d;
    --secondary-bg: #222225;
    --white: #f5f5f5;
    --text-dark: #e0e0e0;
    --accent-color: #b87333; /* Metallic copper */
    --accent-hover: #c88647;
    --gold-accent: #b87333;
    --font-serif: 'Playfair Display', 'Merriweather', 'Georgia', serif;
    --font-sans: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    --font-headline: 'Montserrat', 'Inter', sans-serif;

    /* Axis Landing Page Variables */
    --bg-charcoal: #2F3538;
    --text-black: #111111;
    --text-offwhite: #F5F5F5;
    --accent-copper: #B87333;
    --accent-copper-hover: #9E5D22;
    --bg-contrast: #F5F6F8; /* Stark contrast section */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Cushion anchor scrolls from hiding behind sticky header */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--white);
}

.axis-cta-button:hover {
    background-color: var(--accent-hover) !important;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
header {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--white);
}

header .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 1px;
}

header h1 .header-sub {
    display: block;
    font-size: 1.625rem;
    font-weight: 300;
    margin-top: 0.2rem;
}

/* Main Profile Section */
.profile-section {
    background-color: var(--white);
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Responsive Desktop Layout */
@media (min-width: 768px) {
    .profile-section {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .bio-content {
        flex: 1;
    }
}

/* Profile Image */
.profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-navy);
    flex-shrink: 0;
}

/* Typography & Content */
.bio-content h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.bio-content h2 .text-highlight {
    color: var(--accent-color);
}

.bio-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Call to Action Button */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Accolades Ribbon */
.accolades-ribbon {
    background-color: var(--gold-accent);
    color: var(--primary-navy);
    padding: 1rem 0;
    font-weight: bold;
    text-align: center;
}

.accolades-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .accolades-content {
        flex-direction: row;
        gap: 2rem;
    }
}

.accolades-content span i {
    margin-right: 5px;
}

/* Footer Styling */
footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-col h3 {
    color: var(--gold-accent);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-col p, .footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
}

.social-icons a:hover {
    color: var(--gold-accent);
}

.copyright {
    background-color: rgba(0,0,0,0.2);
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* Mobile Specific Adjustments */
@media (max-width: 600px) {
    /* H1: Break sub-header onto new line and hide separator */
    header h1 .header-sub .separator {
        display: none;
    }
    header h1 .header-sub em {
        display: block;
        margin-top: 0.3rem;
    }

    /* H2: Hide colon and stack text */
    .bio-content h2 .colon {
        display: none;
    }
    .bio-content h2 .text-highlight {
        display: block;
        font-size: 1.5rem; /* Slightly smaller to fit on one line */
    }
}

/* =========================================
   Navigation Styles
   ========================================= */
.main-nav {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--gold-accent);
}

.main-nav .nav-btn {
    background-color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-nav .nav-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* =========================================
   Blog Styles
   ========================================= */
.blog-intro {
    text-align: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-intro h1 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Blog Grid - Responsive Columns */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 Column */
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Columns */
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Columns */
    }
}

/* Blog Card Styles */
.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.blog-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-excerpt {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--accent-hover);
}

/* Blog CTA Section */
.blog-cta {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.blog-cta h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Blog Post Detail Styles
   ========================================= */
.blog-article {
    max-width: 800px;
    margin: 3rem auto;
    background-color: var(--white);
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .blog-article {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
        width: 95%;
    }
}

.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    background-color: #eee; /* Placeholder color while loading */
}

.blog-header {
    background-color: transparent;
    box-shadow: none;
    padding-top: 0;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-title {
    color: var(--primary-navy);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.blog-date {
    color: #aaa;
    font-style: italic;
    font-size: 0.95rem;
}

.blog-content {
    font-size: 1.125rem; /* 18px for better readability */
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content strong {
    color: var(--primary-navy);
}

.blog-footer-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.back-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Axis Chiropractic Landing Page (Pre-Launch) Overhaul
   ========================================================================== */

body.landing-page {
    background-color: var(--bg-charcoal);
    color: var(--text-offwhite);
    font-family: var(--font-sans);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Glassmorphism Sticky Header */
.landing-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(47, 53, 56, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto !important; /* Dynamic height */
}

.landing-header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-nav-left {
    display: flex;
    justify-content: flex-start;
}

.landing-nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}

.landing-nav-left a,
.nav-link-insurance {
    color: var(--accent-copper);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.landing-nav-left a:hover,
.nav-link-insurance:hover {
    color: var(--white);
}

.btn-nav-roster {
    background-color: var(--accent-copper);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-copper);
}

.btn-nav-roster:hover {
    background-color: var(--accent-copper-hover);
    border-color: var(--accent-copper-hover);
    transform: translateY(-1px);
}

.landing-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    overflow: visible !important;
}

.landing-logo img {
    height: auto !important;
    width: auto !important;
    max-height: 130px !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    position: relative;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.25)) !important;
}

/* Hero Section */
.landing-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    background: #2F3538;
    position: relative;
}

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

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-copper);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-headline-brand {
    display: block;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
    font-size: 4.5rem;
    font-weight: 800;
}

.hero-headline-proposition {
    display: block;
    color: #F5F5F5;
    font-size: 2.25rem;
    font-weight: 600;
}

.hero-subheadline {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.8;
    color: #DFE3E5;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--accent-copper);
    color: #ffffff !important;
    padding: 1.25rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--accent-copper);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background-color: var(--accent-copper-hover);
    border-color: var(--accent-copper-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 115, 51, 0.4);
}

/* Buttons */
.btn-copper {
    display: inline-block;
    background-color: var(--accent-copper);
    color: var(--white) !important;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent-copper);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.15);
    cursor: pointer;
}

.btn-copper:hover {
    background-color: var(--accent-copper-hover);
    border-color: var(--accent-copper-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 115, 51, 0.3);
}

/* Insurance Bridge - High Contrast */
.insurance-bridge {
    background-color: var(--bg-contrast);
    color: var(--text-black);
    padding: 7rem 2rem;
}

.insurance-bridge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .insurance-bridge-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.bridge-text h2 {
    font-family: var(--font-headline);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.bridge-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5255;
    margin-bottom: 2rem;
}

.insurance-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.insurance-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #6A7275;
}

.form-group input {
    padding: 0.9rem 1.2rem;
    border: 1px solid #D2D6D8;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-black);
    background-color: #FAFAFA;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-copper);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.insurance-form button {
    margin-top: 1rem;
}

/* Symptom-to-Structure Pivot */
.structure-pivot {
    padding: 8rem 2rem;
    background-color: var(--bg-charcoal);
}

.pivot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .pivot-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

.pivot-text h2 {
    font-family: var(--font-headline);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.pivot-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b0b8bc;
    margin-bottom: 1.5rem;
}

.pivot-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pivot-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* High-Volume Operational Flow */
.operational-flow {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-charcoal) 0%, #1f2325 100%);
    text-align: center;
}

.flow-content {
    max-width: 800px;
    margin: 0 auto;
}

.flow-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-copper);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.flow-content h2 {
    font-family: var(--font-headline);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.flow-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #b0b8bc;
    font-weight: 300;
}

/* Footer & Compliance Anchor */
.landing-footer {
    background-color: #111111;
    color: #8c969b;
    padding: 5rem 2rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
    }
}

.footer-logo {
    height: auto;
    overflow: visible;
}

.footer-logo img {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 1.5rem auto !important;
    filter: brightness(0) invert(1) !important;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #8c969b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-copper);
}

.footer-compliance {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #626b6f;
}

.footer-compliance p {
    margin-bottom: 0.8rem;
}

/* Mobile Responsiveness tweaks */
@media (max-width: 767px) {
    .landing-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
    }
    .landing-nav-left, .nav-link-insurance {
        display: none !important;
    }
    .landing-hero {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 4rem 1.5rem !important; /* Flow naturally after sticky header, no giant offsets needed */
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-headline-brand {
        font-size: 2.5rem;
    }
    .hero-headline-proposition {
        font-size: 1.5rem;
    }
    .btn-hero-cta {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    .bridge-text h2, .pivot-text h2, .flow-content h2 {
        font-size: 2.2rem;
    }
    .landing-logo {
        height: auto !important;
        overflow: visible !important;
    }
    .landing-logo img {
        height: auto !important;
        max-height: 70px !important; /* Cap height to keep header clean and prevent pushing content down */
        position: relative;
        top: 0 !important;
    }
    .btn-nav-roster {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .insurance-form-container {
        padding: 1.5rem;
    }
}

/* Sleek Modal Popup Close Icon Hover */
.legal-modal-close-icon:hover {
    color: var(--white) !important;
}