/* ============================================
   GLOBAL DESIGN TOKENS
   ============================================ */

:root {
    /* Container & Layout */
    --container-max-width: 1440px;
    --container-max-width-desktop: 1280px;
    --container-padding-desktop: 32px;
    
    /* Spacing Scale (from Figma) */
    --spacing-none: 0px;
    --spacing-xxs: 2px;
    --spacing-xs: 4px;
    --spacing-sm: 6px;
    --spacing-md: 8px;
    --spacing-lg: 12px;
    --spacing-xl: 16px;
    --spacing-3xl: 24px;
    --spacing-4xl: 32px;
    --spacing-5xl: 40px;
    --spacing-6xl: 48px;
    --spacing-7xl: 64px;
    --spacing-8xl: 80px;
    --spacing-9xl: 96px;
    --spacing-2xl: 20px;
    
    /* Border Radius */
    --radius-md: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Colors - Brand Blue */
    --colors-brand-blue-25: #e9f2f9;
    --colors-brand-blue-50: #deebf5;
    --colors-brand-blue-300: #4987c1;
    --colors-brand-blue-400: #1d5f9d;
    --colors-brand-blue-500: #044f92;
    --colors-brand-blue-600: #003b70;
    --colors-brand-blue-800: #002548;
    
    /* Colors - Brand Green */
    --colors-brand-green-500: #378e8e;
    --colors-brand-green-400: #699b9b;
    --colors-brand-green-600: #2c7171;
    --colors-brand-green-800: #1F3B3B;
    
    /* Colors - Base */
    --colors-base-white: #ffffff;
    
    /* Colors - Background */
    --colors-background-bg-primary: #ffffff;
    
    /* Colors - Border */
    --colors-border-border-primary: #d0d5dd;
    
    /* Colors - Text */
    --colors-text-text-primary-900: #101828;
    --colors-text-text-placeholder: #667085;
    
    /* Colors - Gray (light mode) */
    --colors-gray-light-mode-25: #fcfcfd;
    --colors-gray-light-mode-50: #f9fafb;
    --colors-gray-light-mode-100: #f2f4f7;
    --colors-gray-light-mode-200: #eaecf0;
    --colors-gray-light-mode-500: #667085;
    --colors-gray-light-mode-600: #475467;
    --colors-gray-light-mode-700: #344054;
    --colors-gray-light-mode-800: #182230;
    --colors-gray-light-mode-900: #101828;
    
    /* Colors - Gray Neutral */
    --colors-gray-neutral-600: #4d5761;
    
    /* Shadows */
    --shadow-sm: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --shadow-md: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
    
    /* Typography - Font Families */
    --font-family-primary: "Myriad Pro", Myriad, "Liberation Sans", "Nimbus Sans L", "Helvetica Neue", Helvetica, Arial, sans-serif;
    
    /* Typography - Font Sizes (from Figma) */
    --font-size-text-sm: 14px;
    --font-size-text-base: 16px;
    --font-size-text-lg: 18px;
    --font-size-text-xl: 20px;
    --font-size-text-2xl: 24px;
    --font-size-text-3xl: 30px;
    --font-size-text-4xl: 36px;
    --font-size-text-5xl: 48px;
    --font-size-text-6xl: 60px;
    --font-size-text-7xl: 72px;
    
    /* Typography - Line Heights (from Figma) */
    --line-height-text-sm: 20px;
    --line-height-text-base: 24px;
    --line-height-text-lg: 24px;
    --line-height-text-xl: 30px;
    --line-height-text-2xl: 32px;
    --line-height-text-3xl: 38px;
    --line-height-text-4xl: 44px;
    --line-height-text-5xl: 54px;
    --line-height-text-6xl: 64px;
    --line-height-text-7xl: 76px;
    
    /* Typography - Font Weights */
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.72px;
}

/* ============================================
   FONT FACES
   ============================================ */

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/MYRIADPRO-REGULAR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/MYRIADPRO-SEMIBOLD.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

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

body {
    margin: 0;
    padding: 0;
    background-color: var(--colors-gray-light-mode-25);
    font-family: var(--font-family-primary);
    color: var(--colors-gray-light-mode-500);
    font-size: var(--font-size-text-lg);
    line-height: var(--line-height-text-lg);
    font-weight: var(--font-weight-regular);
    overflow-x: hidden;
}

main {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

::selection {
    background-color: var(--colors-brand-green-500);
    color: var(--colors-base-white);
}

a {
    color: var(--colors-brand-green-500);
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ============================================
   HEADER - Logo Header Section
   ============================================ */

.header-logo-section {
    background-color: var(--colors-brand-blue-500);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.header-logo-section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-3xl) var(--spacing-8xl);
}

.header-logo-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 768px;
    flex: 1;
}

.header-logo-container {
    height: 48px;
    width: 324px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-logo-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.header-logo-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-lg);
    color: var(--colors-brand-blue-25);
    margin: 0;
}

.header-logo-subtitle .company-name {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-4xl);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    color: var(--colors-base-white);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
}

.header-logo-company {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-4xl);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    color: var(--colors-base-white);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
}

.header-logo-right {
    border-left: 1px solid var(--colors-brand-blue-400);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding-left: var(--spacing-7xl);
}

.header-logo-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.header-logo-call-button {
    background-color: var(--colors-brand-green-500);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--spacing-xl) 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
}

.header-logo-call-button:hover {
    background-color: var(--colors-brand-green-600);
    text-decoration: none;
    color: var(--colors-base-white);
}

.header-logo-call-button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logo-call-button-icon img {
    width: 100%;
    height: 100%;
}

.header-logo-call-button-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-3xl);
    color: var(--colors-base-white);
    white-space: nowrap;
    padding: 0 var(--spacing-xxs);
}

.header-logo-call-button:hover .header-logo-call-button-text {
    color: var(--colors-base-white);
}

.header-logo-hours {
    padding: 0 var(--spacing-3xl);
}

.header-logo-hours-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-2xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-2xl);
    color: var(--colors-base-white);
    text-align: right;
    margin: 0;
}

/* ============================================
   CTA SECTION - First Block
   ============================================ */

.cta-section {
    background-color: var(--colors-gray-light-mode-25);
    border-bottom: 1px solid var(--colors-gray-light-mode-200);
    width: 100%;
    padding: var(--spacing-7xl) 0;
}

.cta-section-container {
    max-width: var(--container-max-width-desktop);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-7xl);
    align-items: center;
    justify-content: center;
}

.cta-section-content {
    flex: 1 1 480px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.cta-section-heading {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.cta-section-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-2xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-2xl);
    color: var(--colors-brand-green-600);
    margin: 0;
}

.cta-section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-7xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-7xl);
    color: var(--colors-gray-light-mode-900);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
}

.cta-section-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-2xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-2xl);
    color: var(--colors-gray-light-mode-600);
    margin: 0;
}

.cta-section-state-info {
    display: flex;
    gap: var(--spacing-3xl);
    align-items: start;
}

.cta-section-state-info-wrapper {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.cta-section-state-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section-state-icon img {
    width: 100%;
    height: 100%;
}

.cta-section-state-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-xl);
    color: var(--colors-gray-neutral-600);
    margin: 0;
}

.cta-section-state-text-bold {
    font-weight: var(--font-weight-semibold);
}

.cta-section-state-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-xl);
    color: var(--colors-brand-green-500);
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
}

.cta-section-state-link:hover {
    color: var(--colors-brand-green-600);
    text-decoration: underline;
}

/* Form Card */
.cta-section-form-card {
    background-color: var(--colors-base-white);
    border: 1px solid var(--colors-gray-light-mode-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4xl) var(--spacing-3xl);
    flex: 0 0 512px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
    justify-content: flex-end;
}

.cta-section-form-header {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.cta-section-form-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-4xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-4xl);
    color: var(--colors-gray-light-mode-800);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
    flex: 1;
}

.cta-section-form-secure {
    display: flex;
    gap: var(--spacing-xs);
    align-items: flex-start;
    flex-shrink: 0;
}

.cta-section-form-secure-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1px;
}

.cta-section-form-secure-icon img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.cta-section-form-secure-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-sm);
    color: var(--colors-gray-light-mode-500);
    margin: 0;
    white-space: nowrap;
}

.cta-section-form-fields {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.cta-section-form-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.cta-section-form-button-group {
    padding-top: var(--spacing-4xl);
}

.cta-section-form-field {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.cta-section-form-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-lg);
    color: var(--colors-gray-light-mode-500);
    margin: 0;
}

.cta-section-form-input {
    background-color: var(--colors-background-bg-primary);
    border: 1px solid var(--colors-border-border-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg) 14px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-lg);
    color: var(--colors-text-text-primary-900);
    width: 100%;
    box-sizing: border-box;
}

.cta-section-form-input::placeholder {
    color: var(--colors-text-text-placeholder);
}

.cta-section-form-input:focus {
    outline: none;
    border-color: var(--colors-brand-blue-500);
}

.cta-section-form-button {
    background-color: var(--colors-brand-green-500);
    border: 1px solid var(--colors-brand-green-400);
    border-radius: var(--radius-full);
    padding: var(--spacing-xl) 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
}

.cta-section-form-button:hover {
    background-color: var(--colors-brand-green-600);
    text-decoration: none;
}

.cta-section-form-button-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-lg);
    color: var(--colors-base-white);
    white-space: nowrap;
    padding: 0 var(--spacing-xxs);
}

.cta-section-form-button-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section-form-button-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section-form-button-icon img {
    width: 100%;
    height: 100%;
}

.cta-section-form-login {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
}

.cta-section-form-login-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-xl);
    color: var(--colors-gray-light-mode-500);
    margin: 0;
}

.cta-section-form-login-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-xl);
    color: var(--colors-brand-green-500);
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
}

.cta-section-form-login-link:hover {
    color: var(--colors-brand-green-600);
    text-decoration: underline;
}

/* Image */
.cta-section-image {
    flex: 1 1 100%;
    min-width: 0;
    height: 480px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* ============================================
   CARDS SECTION - Explore Insurance Plan Features
   ============================================ */

.features-section {
    background-color: var(--colors-gray-light-mode-100);
    border-bottom: 1px solid var(--colors-gray-light-mode-200);
    width: 100%;
    padding: var(--spacing-7xl) 0 var(--spacing-9xl);
}

.features-section-container {
    max-width: var(--container-max-width-desktop);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6xl);
}

.features-section-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.features-section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-6xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-6xl);
    color: var(--colors-brand-blue-800);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
    text-align: center;
}

.features-section-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-xl);
    color: var(--colors-gray-light-mode-700);
    margin: 0;
    text-align: center;
}

.features-section-rows {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.features-section-row {
    display: flex;
    gap: var(--spacing-2xl);
    justify-content: center;
    align-items: flex-start;
}

.feature-card {
    background-color: var(--colors-gray-light-mode-25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    align-items: center;
    flex: 1 1 320px;
    min-width: 320px;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.feature-card-icon {
    background-color: var(--colors-brand-blue-500);
    border: 4px solid var(--colors-brand-blue-50);
    border-radius: var(--radius-full);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.feature-card-icon-inner {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon-inner img {
    width: 100%;
    height: 100%;
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
}

.feature-card-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-3xl);
    color: var(--colors-gray-light-mode-800);
    margin: 0;
    width: 100%;
}

.feature-card-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-base);
    color: var(--colors-gray-light-mode-600);
    margin: 0;
    width: 100%;
}

.feature-card-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    margin-top: auto;
}

.feature-card-footnote {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-sm);
    color: var(--colors-gray-light-mode-600);
    margin: 0;
    text-align: left;
}

.feature-card-content-with-footer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
    justify-content: space-between;
}

.feature-card-content-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
    width: 100%;
}

/* ============================================
   HEADER - Top State Selector Section
   ============================================ */

.header-top-state-section {
    background-color: var(--colors-gray-light-mode-25);
    border-bottom: 1px solid var(--colors-gray-light-mode-200);
    width: 100%;
    padding: var(--spacing-3xl) 0;
}

.header-top-state-container {
    max-width: var(--container-max-width-desktop);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.header-top-state-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-xl);
    color: var(--colors-brand-blue-500);
    white-space: nowrap;
}

.header-top-state-dropdown {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.header-top-state-input-wrapper {
    position: relative;
}

.header-top-state-input {
    background-color: var(--colors-background-bg-primary);
    border: 1px solid var(--colors-border-border-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-lg);
    color: var(--colors-text-text-placeholder);
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.header-top-state-input:focus {
    outline: none;
    border-color: var(--colors-brand-blue-500);
}

.header-top-state-input::placeholder {
    color: var(--colors-text-text-placeholder);
}

.header-top-state-arrow {
    position: absolute;
    right: var(--spacing-3xl);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top-state-arrow img {
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Mobile styles for header top state section */
@media (max-width: 767px) {
    .header-top-state-section {
        padding: var(--spacing-xl) 0;
    }
    
    .header-top-state-container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-4xl);
    }
    
    .header-top-state-text {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }
    
    .header-top-state-input {
        width: 100%;
    }
}


/* CTA Section Responsive */

/* Prevent wrapping between content and form card until mobile breakpoint */
/* Image wraps to its own line by default (flex-basis: 100%) */
@media (min-width: 769px) and (max-width: 1279px) {
    .cta-section-content {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(50% - var(--spacing-7xl));
    }
    
    .cta-section-form-card {
        flex: 0 0 50%;
        min-width: 0;
    }
}

/* Apply below 1000px */
@media (max-width: 999px) {
    .header-logo-section-container {
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-2xl);
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    .header-logo-left {
        max-width: 100%;
        width: 100%;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .header-logo-container {
        width: 100%;
        max-width: 294px;
        height: auto;
    }
    
    .header-logo-subtitle {
        font-size: var(--font-size-text-sm);
        line-height: var(--line-height-text-sm);
        text-align: center;
    }
    
    .header-logo-company {
        font-size: var(--font-size-text-lg);
        line-height: 28px;
        text-align: center;
    }
    
    .header-logo-right {
        border-left: none;
        border-top: none;
        padding-left: 0;
        padding-top: 0;
        width: 100%;
        justify-content: center;
    }
    
    .header-logo-cta {
        width: 100%;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .header-logo-call-button {
        width: 100%;
        padding: var(--spacing-lg) 18px;
        gap: var(--spacing-sm);
    }
    
    .header-logo-call-button-text {
        font-size: var(--font-size-text-base);
        line-height: var(--line-height-text-base);
    }
    
    .header-logo-hours {
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .header-logo-hours-text {
        text-align: center;
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }

    .features-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .features-section-container {
        padding: var(--spacing-4xl);
        gap: var(--spacing-4xl);
    }
    
    .features-section-row {
        flex-direction: column;
        gap: var(--spacing-3xl);
    }
    
    .feature-card {
        flex: none;
        min-width: auto;
        width: 100%;
        height: auto !important;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        gap: var(--spacing-xl);
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    .feature-card-icon {
        width: 32px;
        height: 32px;
        border-width: 2px;
        flex-shrink: 0;
    }
    
    .feature-card-icon-inner {
        width: 16px;
        height: 16px;
    }
    
    .feature-card-content,
    .feature-card-content-with-footer {
        align-items: flex-start;
        text-align: left;
        gap: var(--spacing-xs);
    }
    
    .feature-card-content-group {
        align-items: flex-start;
        text-align: left;
        gap: var(--spacing-xs);
    }
    
    .feature-card-title {
        font-size: var(--font-size-text-xl);
        line-height: 30px;
        text-align: left;
    }
    
    .feature-card-description {
        font-size: var(--font-size-text-base);
        line-height: var(--line-height-text-base);
        text-align: left;
    }
    
    .feature-card-footer {
        justify-content: flex-start;
        text-align: left;
    }
    
    .features-section-title {
        font-size: var(--font-size-text-4xl);
        line-height: var(--line-height-text-4xl);
    }
    
    .features-section-subtitle {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }
    
    .features-section-rows {
        gap: var(--spacing-4xl);
    }
    
    .features-section-row {
        flex-direction: column;
        gap: var(--spacing-4xl);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: var(--spacing-4xl) 0 0;
    }
    
    .cta-section-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: var(--spacing-4xl);
    }
    
    .cta-section-content {
        flex: none;
        min-width: auto;
        width: 100%;
        padding: 0 var(--spacing-4xl);
        gap: var(--spacing-xl);
        align-items: center;
        text-align: center;
        order: 1;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .cta-section-heading {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .cta-section-subtitle {
        display: none;
    }
    
    .cta-section-title {
        font-size: var(--font-size-text-4xl);
        line-height: 100%;
        text-align: center;
        letter-spacing: var(--letter-spacing-tight);
    }
    
    .cta-section-body {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
        text-align: center;
    }
    
    .cta-section-state-info {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .cta-section-state-info-wrapper {
        display: flex;
        gap: var(--spacing-md);
        align-items: center;
        justify-content: center;
    }
    
    .cta-section-state-text {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
        text-align: center;
    }
    
    .cta-section-state-link {
        font-size: var(--font-size-text-xl);
        line-height: 30px;
        text-align: center;
    }
    
    .cta-section-image {
        flex: none;
        min-width: auto;
        width: 100%;
        height: 280px;
        padding: 0 var(--spacing-4xl);
        box-sizing: border-box;
        order: 2;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .cta-section-image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        top: 0;
        left: 0;
    }
    
    .cta-section-form-card {
        width: 100%;
        padding: var(--spacing-3xl) var(--spacing-4xl) var(--spacing-4xl);
        gap: var(--spacing-3xl);
        align-items: center;
        order: 3;
    }
    
    .cta-section-form-header {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-3xl);
    }
    
    .cta-section-form-title {
        font-size: var(--font-size-text-3xl);
        line-height: 38px;
        width: 100%;
    }
    
    .cta-section-form-secure {
        display: none;
    }
    
    .cta-section-form-fields {
        width: 100%;
        gap: var(--spacing-3xl);
    }
    
    .cta-section-form-input-group {
        width: 100%;
        gap: var(--spacing-xl);
    }
    
    .cta-section-form-label {
        font-size: var(--font-size-text-lg);
        line-height: 28px;
    }
    
    .cta-section-form-input {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }
    
    .cta-section-form-button-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    .cta-section-form-button-group::after {
        content: 'This is a secure site.';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-xs);
        width: 100%;
        padding-bottom: var(--spacing-3xl);
        border-bottom: 1px solid var(--colors-gray-light-mode-100);
        font-family: var(--font-family-primary);
        font-size: var(--font-size-text-sm);
        font-weight: var(--font-weight-regular);
        line-height: var(--line-height-text-sm);
        color: var(--colors-gray-light-mode-500);
        white-space: nowrap;
        padding-left: 20px;
        background-image: url('/images-ux/icon-lock.svg');
        background-size: 16px 16px;
        background-repeat: no-repeat;
        background-position: calc(50% - 60px) 0;
    }
    
    .cta-section-form-button {
        width: 100%;
    }
    
    .cta-section-form-button-text {
        font-size: var(--font-size-text-lg);
        line-height: 28px;
    }
    
    .cta-section-form-login {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .cta-section-form-login-text {
        font-size: var(--font-size-text-base);
        line-height: var(--line-height-text-base);
        text-align: center;
    }
    
    .cta-section-form-login-link {
        font-size: var(--font-size-text-xl);
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-logo-section-container {
        padding: var(--spacing-xl) var(--spacing-3xl);
    }
    
    .header-logo-container {
        width: 100%;
        max-width: 324px;
    }
    
    .header-logo-text-ama,
    .header-logo-text-insurance {
        font-size: 28px;
    }
    
    .header-logo-call-button-text {
        font-size: var(--font-size-text-xl);
        line-height: var(--line-height-text-xl);
    }
    
    .header-logo-hours-text {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }
}

/* ============================================
   CTA HELP SECTION - New to Medicare
   ============================================ */

.cta-help-section {
    background-color: var(--colors-background-bg-primary);
    width: 100%;
}

.cta-help-section-container {
    max-width: var(--container-max-width-desktop);
    width: 100%;
    margin: 0 auto;
    padding: var(--spacing-9xl) var(--container-padding-desktop);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-help-section-content {
    width: 100%;
    position: relative;
    background-color: var(--colors-brand-blue-500);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6xl) var(--spacing-7xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-4xl);
    overflow: hidden;
}

.cta-help-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-help-section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
}

.cta-help-section-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 768px;
    width: 100%;
    flex: 1;
}

.cta-help-section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-5xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-5xl);
    color: var(--colors-base-white);
    letter-spacing: -0.96px;
    margin: 0;
}

.cta-help-section-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-xl);
    color: var(--colors-gray-light-mode-50);
    margin: 0;
    max-width: 840px;
}

.cta-help-section-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: flex-start;
    flex-shrink: 0;
}

.cta-help-section-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--spacing-xl) 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-help-section-button-primary {
    background-color: var(--colors-brand-green-500);
    border: 1px solid var(--colors-brand-green-400);
    color: var(--colors-base-white);
}

.cta-help-section-button-primary:hover {
    background-color: var(--colors-brand-green-600);
    border-color: var(--colors-brand-green-600);
    color: var(--colors-base-white);
}

.cta-help-section-button-secondary {
    background-color: var(--colors-base-white);
    border: 1px solid var(--colors-border-border-primary);
    color: var(--colors-gray-light-mode-700);
    width: 100%;
}

.cta-help-section-button-secondary:hover {
    background-color: var(--colors-gray-light-mode-50);
    border-color: var(--colors-gray-light-mode-200);
}

.cta-help-section-button-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-help-section-button-icon img {
    width: 100%;
    height: 100%;
}

.cta-help-section-button-text {
    display: inline-block;
}

.cta-help-section-button-primary .cta-help-section-button-text,
.cta-help-section-button-primary:hover .cta-help-section-button-text {
    color: var(--colors-base-white);
}

/* CTA Help Section Responsive */
@media (max-width: 768px) {
    .cta-help-section-container {
        padding: var(--spacing-4xl) var(--spacing-4xl);
    }

    .cta-help-section-content {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-5xl) var(--spacing-3xl);
    }

    .cta-help-section-text {
        max-width: 100%;
    }

    .cta-help-section-actions {
        width: 100%;
    }

    .cta-help-section-button-primary {
        width: 100%;
    }

    .cta-help-section-button-secondary {
        width: 100%;
    }

    .cta-help-section-title {
        font-size: var(--font-size-text-3xl);
        line-height: var(--line-height-text-3xl);
        letter-spacing: var(--letter-spacing-tight);
    }

    .cta-help-section-description {
        font-size: var(--font-size-text-lg);
        line-height: var(--line-height-text-lg);
    }

    .cta-help-section-button {
        font-size: var(--font-size-text-base);
        line-height: var(--line-height-text-base);
        padding: var(--spacing-lg) var(--spacing-xl);
    }
}

/* ============================================
   FOOTER UX SECTION
   ============================================ */

.footer-ux {
    background-color: var(--colors-brand-blue-600);
    width: 100%;
}

.footer-ux-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: var(--spacing-7xl) calc(var(--spacing-9xl) + var(--spacing-4xl));
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    align-items: flex-start;
}

.footer-ux-copyright {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-ux-copyright-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-base);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-base);
    color: var(--colors-base-white);
    margin: 0;
}

.footer-ux-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-ux-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-text-sm);
    color: var(--colors-base-white) !important;
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.footer-ux-link:hover,
.footer-ux-link:visited,
.footer-ux-link:active,
.footer-ux-link:focus {
    opacity: 0.8;
    text-decoration: underline;
    color: var(--colors-base-white) !important;
}

.footer-ux-link-button {
    text-decoration: underline;
}

.footer-ux-separator {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-ux-separator img {
    width: 1px;
    height: 20px;
}

.footer-ux-disclosures {
    width: 100%;
}

.footer-ux-disclosures-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-sm);
    color: var(--colors-base-white);
    margin: 0;
}

.footer-ux-disclosures-text p {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-text-sm);
    color: var(--colors-base-white);
    margin: 0 0 14px 0;
}

.footer-ux-disclosures-text p:last-child {
    margin-bottom: 0;
}

.footer-ux-disclosures-text p strong,
.footer-ux-disclosures-text p b {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-semibold);
}

/* Footer UX Responsive */
@media (max-width: 768px) {
    .footer-ux-container {
        padding: var(--spacing-4xl) var(--spacing-4xl);
        gap: var(--spacing-xl);
    }

    .footer-ux-copyright {
        justify-content: flex-start;
    }

    .footer-ux-copyright-text {
        text-align: left;
    }

    .footer-ux-links {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }

    .footer-ux-separator {
        display: none;
    }
}

/* ============================================
   GET HELP BUTTON - Fixed Bottom Right
   ============================================ */

.get-help-button,
#helpBtn.get-help-button {
    position: fixed;
    bottom: var(--spacing-xs);
    right: var(--spacing-xs);
    z-index: 1000;
    width: 104px;
    height: 104px;
    background-color: var(--colors-brand-blue-500);
    border: 4px solid var(--colors-brand-blue-300);
    border-radius: var(--radius-full);
    padding: var(--spacing-xl) 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    cursor: pointer !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    pointer-events: auto;
}

.get-help-button:hover {
    background-color: var(--colors-brand-blue-600);
    border-color: var(--colors-brand-blue-400);
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.get-help-button-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.get-help-button-icon img {
    width: 100%;
    height: 100%;
}

.get-help-button-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
    color: var(--colors-base-white);
    white-space: nowrap;
    padding: 0 var(--spacing-xxs);
}

.get-help-button:hover .get-help-button-text {
    color: var(--colors-base-white);
}

/* Get Help Button Responsive */
@media (max-width: 768px) {
    .get-help-button,
    #helpBtn.get-help-button {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        right: 0;
        width: 30px;
        height: 90px;
        padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-xs) var(--spacing-xl);
        border-radius: var(--radius-md) 0 0 var(--radius-md);
        border: none;
        background-color: var(--colors-brand-blue-500);
        box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .get-help-button:hover {
        background-color: var(--colors-brand-blue-600);
        transform: translateY(-50%);
    }

    .get-help-button-icon {
        display: none;
    }

    .get-help-button-text {
        font-size: var(--font-size-text-sm);
        line-height: var(--line-height-text-sm);
        white-space: nowrap;
        padding: 0;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
    }
}

/* ============================================
   GO TO TOP BUTTON - Fixed Bottom Right
   ============================================ */

.go-to-top-button,
#topBtn.go-to-top-button {
    position: fixed;
    bottom: calc(var(--spacing-3xl) + 104px); /* 104px is the height of the get help button */
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background-color: var(--colors-base-white);
    border: 2px solid var(--colors-brand-blue-25);
    border-radius: var(--radius-full);
    padding: var(--spacing-xl);
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer !important;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    pointer-events: auto;
}

.go-to-top-button:hover {
    background-color: var(--colors-brand-blue-25);
    border-color: var(--colors-brand-blue-50);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.go-to-top-button-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.go-to-top-button-icon img {
    width: 100%;
    height: 100%;
}

/* Go to Top Button Responsive */
@media (max-width: 768px) {
    .go-to-top-button,
    #topBtn.go-to-top-button {
        display: none !important;
    }
}

