/* ==========================================================================
   Health & Wellness Guides - High Performance Modern AdSense Design System
   Theme: Premium Deep Teal + Ash White
   WCAG AA Compliant | CLS = 0 | Dropdown Navigation | FontAwesome 6 Ready
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Teal Color Scale */
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e; /* Primary Brand Teal */
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-dark: #093936;

    /* Ash White & Neutral Scale */
    --ash-bg: #f3f5f4;       /* Soft Ash-White Page Background */
    --ash-surface: #f8fa99;
    --ash-card: #ffffff;     /* Pure Crisp White Cards */
    --ash-border: #e2e7e5;   /* Subtle Ash Border */
    --ash-border-hover: #cbd5e1;
    --ash-muted: #64748b;
    --ash-dark: #1e293b;

    /* Slate Typography Colors */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;

    /* Functional Variables */
    --color-bg: var(--ash-bg);
    --color-card-bg: var(--ash-card);
    --color-text-main: var(--slate-900);
    --color-text-muted: var(--slate-600);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Elevation Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(15, 118, 110, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 118, 110, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 118, 110, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-dropdown: 0 12px 28px -6px rgba(15, 118, 110, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Border Radii */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* FontAwesome Icon Helpers */
i[class^="fa-"], i[class*=" fa-"] {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--ash-bg);
    color: var(--slate-900);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Header & Sticky Submenu Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(243, 245, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ash-border);
    box-shadow: var(--shadow-xs);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition-fast);
}

.brand-logo:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--teal-700);
    letter-spacing: -0.03em;
}

.brand-domain {
    color: var(--teal-500);
    font-weight: 700;
}

.brand-slogan {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--slate-600);
    letter-spacing: 0.01em;
    margin-top: 0.1rem;
}

.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Nav Links & Submenu Dropdown Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--teal-700);
    background-color: var(--teal-50);
    text-decoration: none;
}

.caret {
    font-size: 0.7rem;
    margin-left: 0.15rem;
    transition: transform var(--transition-fast);
}

/* Dropdown Submenu Styling */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dropdown);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: var(--radius-lg) !important;
    text-decoration: none !important;
    transition: background-color var(--transition-fast) !important;
}

.dropdown-item:hover {
    background-color: var(--teal-50) !important;
}

.dropdown-icon {
    width: 34px;
    height: 34px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    white-space: normal;
}

.dropdown-text .item-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate-900);
    line-height: 1.25;
}

.dropdown-item:hover .item-title {
    color: var(--teal-700);
}

.dropdown-text .item-desc {
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--slate-500);
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* Nav Actions & Quick Search Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-trigger-btn {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    color: var(--slate-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.search-trigger-btn:hover {
    background: var(--teal-50);
    color: var(--teal-700);
    border-color: var(--teal-300);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: var(--slate-700);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-md);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99;
    padding: 1.5rem;
    overflow-y: auto;
    border-top: 1px solid var(--ash-border);
    box-shadow: var(--shadow-lg);
}

.mobile-drawer.active {
    display: block;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-drawer a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    text-decoration: none;
}

.mobile-drawer a:hover {
    background: var(--teal-50);
    color: var(--teal-700);
}

/* Search Modal Overlay */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1rem;
}

.search-modal.active {
    display: flex;
}

.search-card {
    background: #ffffff;
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--ash-border);
    animation: modalSlideDown 200ms ease-out forwards;
}

@keyframes modalSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-input-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ash-border);
    gap: 0.75rem;
}

.search-input-header i {
    font-size: 1.1rem;
    color: var(--teal-600);
}

.search-input-header input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--slate-900);
}

.search-close-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: var(--slate-400);
    cursor: pointer;
    padding: 0.25rem;
}

.search-results-list {
    max-height: 380px;
    overflow-y: auto;
    padding: 0.5rem;
    list-style: none;
}

.search-results-list li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.search-results-list li a:hover {
    background: var(--teal-50);
}

.search-results-list .res-title {
    font-weight: 600;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.search-results-list .res-cat {
    font-size: 0.75rem;
    color: var(--teal-700);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

/* ==========================================================================
   Main Content Layout & Typography (Teal + Ash White)
   ========================================================================== */

main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.65rem; margin-top: 1.75rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.3rem; margin-top: 1.5rem; margin-bottom: 0.65rem; }

p {
    margin-bottom: 1rem;
    color: var(--slate-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

a {
    color: var(--teal-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--teal-900);
    text-decoration: underline;
}

/* Hero Section with Balanced 50/50 Split & Compact Height */
.hero-section {
    background: linear-gradient(135deg, #093936 0%, #0f766e 60%, #0d9488 100%);
    border-radius: var(--radius-2xl);
    color: #ffffff;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-content p {
    color: var(--teal-100);
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    perspective: 1000px;
}

.hero-image-wrapper img {
    max-width: 100%;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
    cursor: pointer;
    will-change: transform;
}

.hero-image-wrapper img:hover {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.28));
}

/* Email Capture Container (Integrated in Right Column) */
.email-capture-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1.1rem;
    width: 100%;
}

.email-capture-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.825rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.email-capture-box form {
    display: flex;
    gap: 0.45rem;
}

.email-capture-box input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #ffffff;
    font-size: 0.875rem;
    outline: none;
}

.email-capture-box button {
    background: var(--slate-900);
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.email-capture-box button:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* ==========================================================================
   AdSense Placement Zones (CLS = 0 Policy)
   ========================================================================== */

.ad-container {
    margin: 2rem 0;
    padding: 0.5rem 0;
    text-align: center;
    position: relative;
    contain: layout style;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ad-slot-leaderboard { min-height: 110px; width: 100%; }
.ad-slot-rectangle { min-height: 280px; width: 100%; max-width: 336px; margin: 0 auto; }
.ad-slot-inline { min-height: 260px; width: 100%; }
.ad-slot-sidebar { min-height: 300px; width: 100%; }

.ad-slot ins.adsbygoogle {
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   Category Grid & Article Cards (Teal & Ash White)
   ========================================================================== */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.section-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.section-header a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal-700);
}

.grid-5-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pillar-card {
    background: var(--ash-card);
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-200);
}

.pillar-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--teal-50);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pillar-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.pillar-card h3 a {
    color: var(--slate-900);
    text-decoration: none;
}

.pillar-card h3 a:hover {
    color: var(--teal-700);
}

.pillar-card p {
    font-size: 0.925rem;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
    flex: 1;
}

.pillar-article-list {
    list-style: none;
    border-top: 1px solid var(--ash-border);
    padding-top: 0.85rem;
}

.pillar-article-list li {
    margin-bottom: 0.65rem;
}

.pillar-article-list li a {
    color: var(--slate-800);
    font-size: 0.925rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pillar-article-list li a i {
    color: var(--teal-500);
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

/* Article Cards Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
}

.article-card {
    background: var(--ash-card);
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-200);
}

.article-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Graceful Category Capsule with Embedded SVG */
.article-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.75rem 0.3rem 0.4rem;
    border-radius: var(--radius-full);
    font-size: 0.785rem;
    font-weight: 700;
    text-transform: none; /* Natural, graceful title casing */
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition: all var(--transition-fast);
}

.category-capsule .capsule-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Pillar-Specific Sophisticated Color Schemes */
.category-capsule--online-therapy-telehealth,
.category-capsule--default {
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    color: #0f766e;
}

.category-capsule--mental-health-entrepreneurs {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    color: #6d28d9;
}

.category-capsule--health-insurance-self-employed {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0369a1;
}

.category-capsule--sleep-stress-wellness {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

.category-capsule--supplements-wellness-products {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.badge-time {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--slate-500);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--ash-bg);
    border: 1px solid var(--ash-border);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
}

.article-card h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
}

.article-card h3 a {
    color: var(--slate-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.article-card h3 a:hover {
    color: var(--teal-700);
}

.article-card p {
    font-size: 0.925rem;
    color: var(--slate-600);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* ==========================================================================
   Article Detail Layout & Sidebar
   ========================================================================== */

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.article-main-content {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.article-header {
    border-bottom: 1px solid var(--ash-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: sticky;
    top: 85px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-900);
}

/* YMYL Mandates: Bio & Disclaimers */
.medical-disclaimer-box,
.affiliate-disclosure-box {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-left: 4px solid var(--teal-600);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.925rem;
    color: var(--slate-700);
}

.medical-disclaimer-box i,
.affiliate-disclosure-box i {
    color: var(--teal-700);
    margin-right: 0.4rem;
}

/* Peer-Reviewed Clinical & Scientific References (Google AdSense E-E-A-T) */
.article-references {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: var(--ash-bg);
    border: 1px solid var(--ash-border);
    border-left: 4px solid var(--teal-600);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
}

.article-references h4 {
    margin: 0 0 0.85rem;
    color: var(--teal-900);
    font-size: 0.95rem;
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.01em;
}

.article-references ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.article-references li {
    margin-bottom: 0.5rem;
}

.article-references a {
    color: var(--teal-700);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-references a:hover {
    color: var(--teal-900);
}

.author-bio-card {
    background: var(--ash-bg);
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.author-credentials {
    font-size: 0.825rem;
    color: var(--teal-700);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--slate-600);
}

/* ==========================================================================
   Interactive Tools Styling (Teal & Ash White)
   ========================================================================== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

.tool-card {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.tool-card:hover {
    transform: translateY(-3px);
    border-color: var(--teal-500);
}

.tool-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--teal-100);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.tool-card h3 { margin-top: 0; margin-bottom: 0.5rem; }

.tool-form-card {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.tool-form-card fieldset {
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--ash-bg);
}

.tool-form-card legend {
    font-weight: 700;
    color: var(--slate-900);
    padding: 0 0.5rem;
    font-size: 1.05rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.radio-option:hover {
    border-color: var(--teal-500);
    background: var(--teal-50);
}

.radio-option input[type="radio"] {
    accent-color: var(--teal-600);
    width: 18px;
    height: 18px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.btn-primary {
    background: var(--teal-700);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--teal-800);
    transform: translateY(-1px);
    text-decoration: none;
}

.result-card {
    background: var(--teal-50);
    border: 2px solid var(--teal-500);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 1.75rem;
    text-align: center;
}

.result-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-800);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Footer (Teal + Ash Dark)
   ========================================================================== */

.site-footer {
    background: #0d1b1a;
    color: var(--slate-300);
    padding: 4rem 1.25rem 2rem;
    border-top: 1px solid #1a2f2d;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-newsletter p {
    color: var(--slate-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-newsletter input[type="email"] {
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid #233e3b;
    background: #152725;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #1a2f2d;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--slate-500);
}

.footer-bottom a {
    color: var(--slate-400);
}

/* ==========================================================================
   InsureZest-Inspired Vector & UI Components
   ========================================================================== */

/* 1. YMYL & Medical Trust Top Bar */
.ymyl-top-bar {
    background: #092825;
    color: #e6f4f1;
    font-size: 0.8125rem;
    border-bottom: 1px solid #11423e;
    padding: 0.45rem 1rem;
}

.ymyl-top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ymyl-top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ymyl-badge {
    background: #0f766e;
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.02em;
}

.ymyl-notice {
    color: #cbd5e1;
    font-weight: 500;
}

.ymyl-top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ymyl-link {
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color var(--transition-fast);
}

.ymyl-link:hover {
    color: #5eead4;
}

/* 2. Hero Badges & Action Buttons */
.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.badge-pill--teal {
    background: #e6fffa;
    color: #0f766e;
    border: 1px solid #99f6e4;
}

.badge-pill--blue {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.badge-pill--emerald {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.btn-hero-primary {
    background: #0f766e;
    color: #ffffff;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
    transition: all var(--transition-fast);
}

.btn-hero-primary:hover {
    background: #115e59;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
    color: #ffffff;
}

.btn-hero-secondary {
    background: #ffffff;
    color: var(--slate-800);
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--ash-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.btn-hero-secondary:hover {
    background: #f8fafc;
    border-color: var(--teal-400);
    color: var(--teal-800);
    transform: translateY(-2px);
}

.email-capture-privacy {
    margin-top: 0.55rem;
    font-size: 0.775rem;
    color: #a7f3d0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* 3. Why Trust HealthinSnap Section */
.trust-grid-section {
    margin: 3.5rem 0 2rem;
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
}

.section-badge-center {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    max-width: 750px;
    margin: 0 auto 0.75rem;
    line-height: 1.3;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.05rem;
    color: var(--slate-600);
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: var(--ash-bg);
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: var(--teal-300);
    box-shadow: var(--shadow-md);
}

.trust-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.15rem;
}

.trust-icon--teal {
    background: #ccfbf1;
    color: #0f766e;
}

.trust-icon--blue {
    background: #dbeafe;
    color: #1e40af;
}

.trust-icon--purple {
    background: #ede9fe;
    color: #6b21a8;
}

.trust-icon--emerald {
    background: #d1fae5;
    color: #065f46;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.55rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.5;
    margin: 0;
}

/* 4. Content Pillar Enhancements */
.section-pre-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-700);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.view-all-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--teal-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-fast);
}

.view-all-link:hover {
    gap: 0.65rem;
    color: var(--teal-900);
}

.pillar-vector-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.pillar-guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-800);
    background: var(--teal-100);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.35rem;
}

.pillar-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--ash-border);
}

.pillar-card-footer a {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--teal-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pillar-card-footer a:hover {
    color: var(--teal-900);
    text-decoration: underline;
}

/* 5. How It Works Section */
.how-it-works-section {
    margin: 3.5rem 0 2rem;
    background: #0b1f1e;
    color: #ffffff;
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works-section .section-title-center {
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform var(--transition-base), background var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal-400);
}

.step-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #0f766e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.4);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.step-card p {
    font-size: 0.925rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* 6. Tool Card Enhancements */
.tool-count-pill {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

.tool-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.tool-time-badge {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--ash-bg);
    border: 1px solid var(--ash-border);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.tool-category-tag {
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-700);
    margin-bottom: 0.35rem;
    display: block;
}

.tool-icon--teal { background: #ccfbf1; color: #0f766e; }
.tool-icon--amber { background: #fef3c7; color: #b45309; }
.tool-icon--blue { background: #dbeafe; color: #1d4ed8; }
.tool-icon--indigo { background: #e0e7ff; color: #4338ca; }

.btn-tool-cta {
    margin-top: auto;
    background: #0f766e;
    color: #ffffff;
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.btn-tool-cta:hover {
    background: #115e59;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.25);
}

/* 7. Conversion CTA Banner */
.cta-banner-section {
    margin: 4rem 0 2rem;
    background: linear-gradient(135deg, #092c29 0%, #0f766e 100%);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2rem;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: #a7f3d0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner-inner h2 {
    font-size: 2.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.cta-banner-inner p {
    font-size: 1.05rem;
    color: #ccfbf1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-banner-form {
    display: flex;
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.cta-banner-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #ffffff;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.btn-banner-submit {
    background: #0f172a;
    color: #ffffff;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-lg);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-banner-submit:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8125rem;
    color: #99f6e4;
    font-weight: 600;
}

.cta-trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ==========================================================================
   Graceful Health Certification & Disclaimer Bar (Under Hero Section)
   ========================================================================== */
.health-trust-bar {
    background: #ffffff;
    border: 1px solid var(--ash-border);
    border-radius: var(--radius-xl);
    padding: 1rem 1.35rem;
    margin: 1.75rem 0 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.health-trust-bar:hover {
    box-shadow: var(--shadow-md);
}

.health-trust-bar-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.health-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
}

.health-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.health-trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.25;
}

.trust-desc {
    font-size: 0.725rem;
    color: var(--slate-500);
    line-height: 1.35;
}

.health-trust-divider {
    width: 1px;
    height: 30px;
    background: var(--ash-border);
    flex-shrink: 0;
}

.health-trust-item--notice {
    background: #fafcfb;
    border: 1px solid #d1fae5;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-md);
    flex: 1.25;
    justify-content: space-between;
}

.health-trust-icon--notice {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #059669;
}

.trust-disclaimer-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-800);
    background: var(--teal-100);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.trust-disclaimer-btn:hover {
    background: var(--teal-700);
    color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .health-trust-bar-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .health-trust-divider {
        display: none;
    }
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .footer-container { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.85rem; }
    h1 { font-size: 1.85rem; }
    .search-trigger-btn span { display: none; }
    .ymyl-top-bar-right { display: none; }
    .trust-cards-grid { grid-template-columns: 1fr; }
    .cta-banner-form { flex-direction: column; }
}

@media (max-width: 640px) {
    .health-trust-bar-container {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
}


