/* 
==========================
Design Tokens
==========================
*/
:root {
         /* Colors */
    --primary-color: #000000;
    --text-primary: #333;
    --background-light: #f8f9fa;
    --background-gray: #f2f2f2;
    --primary-blue: #106cb7;
    --secondary-blue: #09589c;
    --dark-blue: #104470;
    --highlight-blue: #1570EF;
    --error-red: #cc1231;

       /* Typography */
    --font-family-base: 'Inter', sans-serif;
    --font-size-xs: 13px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-size-xxxl: 28px;
    --font-size-huge: 32px;
    
        /* Spacing */
    --spacing-xs: 3px;
    --spacing-s: 6px;
    --spacing-m: 12px;
    --spacing-l: 24px;
    --spacing-xl: 36px;
    
}

/* 
==========================
Base Styles
==========================
*/
body {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--primary-text);
    margin: 0;
    padding: 0;
    background: var(--background-light) !important;

}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}

a,
button {
    color: inherit;
    text-decoration: none;
    outline-offset: 2px !important;
}

a:focus,
a:hover,
button:focus {
    text-decoration: none;
}

button:focus,
input:focus,
textarea:focus {
    outline: 0;
}

/* 
==========================
Typography
==========================
*/
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
}

h1 { font-size: var(--font-size-huge); line-height: 1.3; }
h2 { font-size: var(--font-size-xxxl); }
h3 { font-size: var(--font-size-xxl); }
h4 { font-size: var(--font-size-xl); }
h5 { 
    font-size: var(--font-size-lg); 
    font-weight: 600; 
    margin-bottom: var(--spacing-m); 
}
h6 { 
    font-size: var(--font-size-base); 
    font-weight: 600; 
    margin-bottom: var(--spacing-s); 
}

p, li, td {
    font-size: var(--font-size-base);
    line-height: 1.3;
}

th, strong, caption {
    font-weight: 600;
}
/* 
==========================
Buttons
==========================
*/

.btn-primary {
    color: #fff;
    background: linear-gradient(to bottom, var(--primary-blue) 6%, var(--secondary-blue) 100%);
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(to top, var(--dark-blue) -25%, var(--secondary-blue) 125%);
    border-color: var(--secondary-blue);
}

.btn-xlg {
    font-size: var(--font-size-xxl);
    padding: 10px var(--spacing-l);
    font-weight: 600;
}

.btn-xlg a {
    color: #fff;
}

/* 
==========================
Jumbotron Text
==========================
*/

/*.jumbotron {*/
/*    h1, h1.jumboText {*/
/*        font-size: var(--font-size-xxl);*/
/*        padding: var(--spacing-l) 0 var(--spacing-m);*/
/*        color: var(--primary-text);*/
/*    }*/

/*    h3, h4 {*/
/*        font-size: var(--font-size-xl);*/
/*        font-weight: 600;*/
/*        color: var(--primary-text);*/
/*    }*/

/*    h5 {*/
/*        font-size: var(--font-size-base);*/
/*        font-weight: 600;*/
/*        color: var(--primary-text);*/
/*    }*/
/*}*/

/* 
==========================
Tables
==========================
*/

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table-header {
    background-color: var(--light-gray);
    font-size: var(--font-size-sm);
    font-weight: bold;
    text-align: left;
}

.header-cell, 
.category-cell, 
.details-cell {
    padding: 8px;
    border-bottom: 1px solid var(--border-gray);
}

.category-cell {
    font-size: var(--font-size-xs);
    color: var(--primary-text);
    width: 200px;
    text-align: right;
}

/* 
==========================
Spacing Utilities 
==========================
*/

/* Padding Top */
.ptn { padding-top: 0; }
.ptxs { padding-top: var(--spacing-xs); }
.pts { padding-top: var(--spacing-s); }
.ptm { padding-top: var(--spacing-m); }
.ptl { padding-top: var(--spacing-l); }
.ptxl { padding-top: var(--spacing-xl); }

/* Padding Right */
.prn { padding-right: 0; }
.prxs { padding-right: var(--spacing-xs); }
.prs { padding-right: var(--spacing-s); }
.prm { padding-right: var(--spacing-m); }
.prl { padding-right: var(--spacing-l); }
.prxl { padding-right: var(--spacing-xl); }

/* Padding Bottom */
.pbn { padding-bottom: 0; }
.pbxs { padding-bottom: var(--spacing-xs); }
.pbs { padding-bottom: var(--spacing-s); }
.pbm { padding-bottom: var(--spacing-m); }
.pbl { padding-bottom: var(--spacing-l); }
.pbxl { padding-bottom: var(--spacing-xl); }

/* Padding Left */
.pln { padding-left: 0; }
.plxs { padding-left: var(--spacing-xs); }
.pls { padding-left: var(--spacing-s); }
.plm { padding-left: var(--spacing-m); }
.pll { padding-left: var(--spacing-l); }
.plxl { padding-left: var(--spacing-xl); }

/* Margin Top */
.mtn { margin-top: 0; }
.mtxs { margin-top: var(--spacing-xs); }
.mts { margin-top: var(--spacing-s); }
.mtm { margin-top: var(--spacing-m); }
.mtl { margin-top: var(--spacing-l); }
.mtxl { margin-top: var(--spacing-xl); }

/* Margin Right */
.mrn { margin-right: 0; }
.mrxs { margin-right: var(--spacing-xs); }
.mrs { margin-right: var(--spacing-s); }
.mrm { margin-right: var(--spacing-m); }
.mrl { margin-right: var(--spacing-l); }
.mrxl { margin-right: var(--spacing-xl); }

/* Margin Bottom */
.mbn { margin-bottom: 0; }
.mbxs { margin-bottom: var(--spacing-xs); }
.mbs { margin-bottom: var(--spacing-s); }
.mbm { margin-bottom: var(--spacing-m); }
.mbl { margin-bottom: var(--spacing-l); }
.mbxl { margin-bottom: var(--spacing-xl); }


/* 
==========================
Typography Utilities 
==========================
*/
/* Font Weights */
.noBold { font-weight: normal; }
.mdBold { font-weight: 600; }
.bold { font-weight: 700; }

/* Font Sizes */
.testcal {
    font-family: var(--font-family-base);
    font-size: var(--font-size-xs);
    color: var(--text-primary);
}

.slider_limit_min,
.slider_limit_max {
    font-size: var(--font-size-lg) !important;
}

/* Line Heights */
.profile-info {
    line-height: 1.4;
}

/* 
==========================
Color Utilities 
==========================
*/
.white { color: #fff; }
.black, .blue { color: var(--text-primary); }
.red { color: var(--error-red); }
.highlight { color: var(--highlight-blue); }
.color-scheme-gray { background: var(--background-gray); }

/* 
==========================
Layout Utilities 
==========================
*/
.clearfix {
    clear: both;
}

.sliderlabel {
    display: none;
}

/* 
==========================
Media Queries
==========================
*/
@media (min-width: 768px) {
    .clearfixMobile {
        clear: none;
    }
}


/* 
==========================
Navigation Component
==========================
*/

/* Header Container */
.header-area {
    background: #FFFFFF;
    border-top: 10px solid rgba(34, 34, 34, 1);
    height: 100px;
    padding: 15px 0 20px 0;
    position: relative;
    top: 0;
    width: 100%;
}

.container {
    max-width: 1179px;
    padding: 0 0px;
}

/* Logo Section */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-area a {
    display: inline-block;
    max-width: 100%;
}

.logo-area img {
    height: auto;
    max-height: 50px;
    max-width: 100%;
}

/* Help Section */
.help_blk {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.help_blk > a {
    color: #333;
    font-size: 18px;
    text-align: right;
    text-decoration: none;
}

.help_blk > a p {
    color: #303131;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}

.help_blk > a p span {
    color: #06C;
    font-weight: 700;
    text-decoration: underline;
}

/* Overlay */
.overly {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1;
}

.overly.active {
    z-index: 9;
}

/* 
==========================
Mobile Styles (< 768px)
==========================
*/
@media (max-width: 767px) {
    .header-area {
        height: 180px;
    }
    
    .logo-area {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .help_blk {
        justify-content: center;
    }
    
    .help_blk > a {
        text-align: center;
    }
}
/* 
====================
Hero__area starts here
====================
*/
.hero__area {
background-color: #CC0033;
}

.hero__area__wrapper {
    padding: 80px 0px 80px 40px;
    position: relative;
    overflow: hidden; 
}

.hero__wrapper__content {
    max-width: 400px;
    position: relative; 
    z-index: 2; 
}

.hero__wrapper__content h2 {
    color: #FFF;
    font-size: 14px !important;
    line-height: 25.5px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase !important;
    
    
}

.hero__wrapper__content h1 {
    color: #FFF;
    font-size: 38px !important;
    font-weight: 700;
    line-height: 43px;
    margin-top: 16px;
}

.hero__thumb {
    bottom: 0;
    right: 0; /* Changed from 130px */
    z-index: 1; /* Lower than content */
    max-width: 450px;
    position: absolute;
    margin-right: 40px; /* Add spacing from the right */
}

/* Add media query for better responsiveness */
@media (max-width: 991px) {
    .hero__area__wrapper {
        padding: 60px 20px;
    }
    
    .hero__wrapper__content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero__thumb {
        position: relative;
        margin: 0 auto;
        right: auto;
    }
}

/* 
==========================
Journey Banner Start
==========================
*/
.onboarding-header-wrapper {
    background-color: #cc0033;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.onboarding-header-wrapper::before {
    /* Remove background image and overlay */
    content: none;
}

.onboarding-header {
    position: relative;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.onboarding-header__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.onboarding-header__title {
    font-size: 24px !important;
    color: #ffffff !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

.onboarding-header__title.member-title {
    font-size: 24px;
    color: #ffffff;
    text-align: left;
    line-height: 1.2;
}

.onboarding-header__title.member.onboarding-member-name {
    font-size: 21px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    padding-top: 0 !important;
}
/* 
==========================
Journey Banner End
==========================
*/

/* 
====================
Hero__area starts here
====================
*/

/*.hero__area {*/
/*    background-color: #CC0033;*/
/*}*/
/*.hero__area__wrapper {*/
/*	padding: 80px 0px 80px 100px;*/
/*}*/
/*.hero__wrapper__content {*/
/*	max-width: 400px;*/
/*}*/
/*.hero__wrapper__content h2 {*/
/*    color: #FFF;*/
/*    font-size: 14px !important;*/
/*    line-height: 25.5px;*/
/*    letter-spacing: 1px;*/
/*    font-weight: 700;*/
/*    text-transform: uppercase !important;*/
   
/*}*/
/*.hero__wrapper__content h1 {*/
/*    color: #FFF;*/
/*    font-size: 38px !important;*/
/*    font-weight: 700;*/
/*    line-height: 43px;*/
/*    margin-top: 16px;*/
/*}*/
/*.hero__thumb {*/
/*	bottom: 0;*/
/*	right: 130px;*/
/*    z-index: 100;*/
/*	max-width: 450px;*/
/*}*/
/*@media (max-width: 1199px) {*/
/*    .container.d-none.d-lg-block {*/
/*        display: none !important;*/
/*    }*/
/*}*/
/* hero area end here */




/* form area start here */
.form__area__top {
    margin-bottom: 25px;
}
.form__area__top p {
	font-size: 14px;
	line-height: 23px;
	text-align: left;
	margin-bottom: 25px;
}
.form__area__top a {
    gap: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #0066CC;
}
.form__area__top h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.form__area {
	max-width: 1010px;
	padding: 30px;
}
.form__title {
    border-top: 2px solid #000000;
    padding-bottom: 5px;
}

.form__title h2 { /* Updated from .form__title p */
    font-size: 17px !important; 
    line-height: 1.4; 
    padding-top: 4px;
    color: #000000;
    margin-bottom: 0; 
    border-top: 5px solid #000000;
}

.form__title span {
    font-size: 14px;
    line-height: 23px;
    color: #333;
    padding-top: 10px;
}

.subtext {
    display: block;
    margin-top: 8px; 
}

.coverage__amount p {
    font-size: 16px;
}
.coverage__amount span {
    font-size: 14px;
    line-height: 23px;
    color: #1A1D1E;
    padding-top: 15px;
}

.form__area__wrapper .form {
    gap: 25px;
}
.detail__form .form__title h4 {
    color: #333;
    font-size: 14px;
    line-height: 25.5px; /* 182.143% */
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.input__block {
    gap: 20px;
}
.input__block .input__field {
    height: fit-content;
}
.input__field input, .input__field select, .input__field label {
	color: #1A1D1E;
	font-size: 15px;
	line-height: 23px;
	letter-spacing: -0.21px;
	color: #1A1D1E;
	font-weight: 600;
	margin-bottom: 4px;
}
.input__field label {
    display: flex;
    gap: 8px;
    align-items: center;
}
.input__field input,
.input__field select {
    height: auto !important;
    border-radius:  8px;
    border: 1px solid #888;
    background: #FFF;
    height: 56px !important;
    font-weight: 400;
}
.input__field input:focus, .input__field select:focus {
	box-shadow: none;
	outline: none;
	border: 2px solid #0066CC;
}
.input__field label .custom__tooltip img {
    width: 20px;
    height: 20px;
}
.input__field.dob {
	width: 136px !important;
}
.input__field.income input {
	width: 136px !important;
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: #06C;
}

.gender__title {
	gap: 8px;
	margin-bottom: 10px !important;
	font-weight: 600;
}
.gender__select__one {
	gap: 50px;
}
.required__alert .input__field input {
    border: 1px solid #E0595E;
    background: #FFE8E7;
}
.error__msg {
    display: none;
}

.alert-danger a {
    color: inherit;
    text-decoration: underline !important;
}
.alert-danger a:hover,
.alert-danger a:focus {
    color: inherit;
    text-decoration: underline !important;
}
.alert-warning a {
    color: #664d03;
    text-decoration: underline !important;
 }
.alert-warning a:hover,
.alert-warning a:focus {
    color: #664d03;
    text-decoration: underline !important;
        }
.required__alert .error__msg {
    display: flex;
	color: #D53943;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 18px;
	gap: 8px;
    margin-top: 4px;
}

.nice-select {
	border-radius: 8px;
	border: 1px solid #888;
	color: #1A1D1E;
	font-size: 15px;
	height: 56px !important;
	line-height: 54px;
	padding-left: 12px;

}
.nice-select::after {
    border-style: solid;
   border-width: 0 5px 5px 5px !important;
   border-color: transparent transparent #333333 transparent !important;
   transform: rotate(180deg) ;
}
.nice-select.open::after {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
	border: 2px solid #0066CC;
}
.nice-select .list {
	width: 100%;
	height: 224px;
	overflow: scroll;
	border-radius: 4px;
	border: 1px solid #888888;
	margin-top: 8px;
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
}
.nice-select .option {
	line-height: 56px;
	min-height: 56px;
	padding-left: 12px;
	padding-right: 12px;
    border-left: 4px solid transparent;
}
.nice-select .option:hover,
.nice-select .option.focus, .nice-select .option.selected.focus{
	background-color: transparent;
	color: #0066CC;
	font-weight: 700 !important;
	border-left: 4px solid #0066CC;
}


.gender.gender__two {
    flex-basis: 50%;
    width: 75% !important;
}
.gender.gender__two .gender__select {
	width: 75%;
}

.smoke__block {
	padding-top: 32px;
	padding-bottom: 6px;
	border-top: 0.5px solid #BCBCBC;
}
/* form area end here */
/* light mode footer area start here */

.footer__area--light {
    padding: 24px 10px 40px;
    background-color: #FFFFFF;
}
.footer__area--light .footer__wrapper p, .footer__area--light .footer__wrapper a {
    color: #333333;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: -0.21px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all .3s;
    text-decoration: none !important;
}
.footer__area--light .footer__wrapper .footer__copy {
    margin-top: 12px;
}
.footer__area--light .footer__menu {
    padding: 35px 0px;
}
.footer__area--light .footer__menu__link {
    gap: 32px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer__area--light .footer__menu__link li {
    margin-bottom: 10px;
}
.footer__area--light .footer__wrapper a:hover {
    color: #000;
}
.footer__area--light .footer__wrapper a:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}
.footer__area--light .footer__wrapper a::before,
.footer__area--light .footer__wrapper a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}
.footer__area--light .footer__wrapper a:hover::before,
.footer__area--light .footer__wrapper a:focus::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.footer__area--light .footer__wrapper a.footer__link--animated::before,
.footer__area--light .footer__wrapper a.footer__link--animated::after {
}
@media (min-width: 768px) {
    .footer__area--light .footer__menu__link li {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .footer__area--light .footer__menu__link li:last-child {
        margin-right: 0;
    }
}

/* Dark mode footer area start here */

.footer__area {
    padding: 24px 10px 40px;
    background-color: #111111;
}
.footer__wrapper p, .footer__wrapper a {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: -0.21px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all .3s;
    text-decoration: none !important;
}
.footer__wrapper .footer__copy {
    margin-top: 12px;
}
.footer__menu {
    padding: 35px 0px;
}
.footer__menu__link {
    gap: 32px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer__menu__link li {
    margin-bottom: 10px;
}
.footer__wrapper a:hover {
    color: #F2B929;
}
.footer__wrapper a:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}
.footer__wrapper a::before,
.footer__wrapper a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}
.footer__wrapper a:hover::before,
.footer__wrapper a:focus::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.footer__wrapper a.footer__link--animated::before,
.footer__wrapper a.footer__link--animated::after {
}
@media (min-width: 768px) {
    .footer__menu__link li {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .footer__menu__link li:last-child {
        margin-right: 0;
    }
}


/* Dark mode footer area end here */

/* Next Buttons */
.nextButton.btn.btn-fill {
    padding: 12px 24px;
    border-radius: 100px;
    background-color: #1570EF; 
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    letter-spacing: -0.21px;
    gap: 8px;
    width: 140px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    border: none;
}

.nextButton.btn.btn-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.nextButton.btn.btn-fill:hover::before {
    left: 100%;
}

.nextButton.btn.btn-fill:hover {
    background-color: #1264d7;
    transform: scale(1.05);
    color: #fff;
}

.nextButton.btn.btn-fill:focus::before, 
.nextButton.btn.btn-fill:active::before {
    left: -100%;
}

.nextButton.btn.btn-fill:focus, 
.nextButton.btn.btn-fill:active {
    background-color: #1264d7;
    transform: scale(1);
    color: #fff;
}

.nextButton.btn.btn-fill:active {
    background-color: #1264d7;
    color: #fff;
}

.nextButton.btn.btn-fill.disabled {
    background-color: #80B3E5 !important;
    cursor: not-allowed;
    color: #fff;
}

.nextButton.btn.btn-fill span {
    min-width: 60px;
}

.nextButton.btn.btn-fill img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.btn-block.addButton:focus {
    outline: 3px solid #0056b3 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.5) !important;
    transition: outline-offset 0.1s ease;
    color: #fff;
}

@media (max-width: 767px) {
  .landing-header-container .nextButton.btn.btn-fill {
    margin: 0 auto !important;
  }
  
  .landing-header-container div[style*="flex: 0 0 50%"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .landing-header-container div[style*="flex: 0 0 50%"]:first-child {
    margin-bottom: 10px !important;
  }
  
  .landing-header-container div[style*="display: flex; align-items: center"] {
    justify-content: center !important;
  }
  
  .landing-header-container div[style*="flex-direction: column"] {
    align-items: center !important;
  }
  
  .landing-header-container p[style*="text-align: right"] {
    text-align: center !important;
    margin-bottom: 0 !important;
  }
  
  .landing-header-container div[style*="max-width: 1179px"] {
    padding-bottom: 10px !important;
  }
  
  .landing-header-container a[href^="tel:"] {
    text-decoration: underline !important;
  }
  
  .landing-header-container a[href^="tel:"]:focus {
    outline: 2px solid #0066CC !important;
    outline-offset: 2px !important;
  }
}
/* Back Buttons */
.backButton.btn.btn-fill {
    padding: 12px 24px;
    border-radius: 100px;
    background-color: #e0e0e0;
    color: #000;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    letter-spacing: -0.21px;
    gap: 8px;
    width: 140px;
    transition: all .3s;
    border: none;
}
.nextButton.btn.btn-fill {
    margin-left: auto;
}
.backButton.btn.btn-fill:hover {
    background-color: #333333;
    color: #fff;
    border-color: none !important;
}

.backButton.btn.btn-fill:focus {
    outline: 2.5px solid #1570EF;
    outline-offset: 2px;
    background-color: #e0e0e0;
    color: #000;
}

.backButton.btn.btn-fill:active {
    background-color: #d0d0d0;
}

.backButton.btn.btn-fill.disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
}

.backButton.btn.btn-fill span {
    min-width: 60px;
}

.backButton.btn.btn-fill img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Container to keep buttons in the same line */
.button-container {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.custom-back-btn {
    padding: 12px 24px;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    border: 1px solid #999;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    letter-spacing: -0.21px;
    gap: 8px;
    width: 140px;
    margin-left: auto;
    transition: all .3s;
}

.custom-back-btn:hover {
    color: #000;
    background-color: #f0f0f0;
    border-color: #000;
}

.custom-back-btn:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
    background-color: #f0f0f0;
    color: #000;
}

.custom-back-btn span {
    font-size: 15px;
    font-weight: bold;
    padding-right: 4px;
    margin-right: 0;
}

@media screen and (max-width: 380px) {
    .button-container {
        gap: 12px;
    }
    
    .nextButton.btn.btn-fill,
    .backButton.btn.btn-fill,
    .custom-back-btn {
        padding: 8px 16px;
        font-size: 14px;
        width: 100px;
        min-width: auto;
    }

    .nextButton.btn.btn-fill span,
    .backButton.btn.btn-fill span,
    .custom-back-btn span {
        min-width: auto;
    }

    .nextButton.btn.btn-fill img,
    .backButton.btn.btn-fill img {
        width: 16px;
        height: 16px;
    }
}
/* Next Buttons End */

.householdDiv, .credentialDiv{
    display:none;
}

.billingBg {
  background-color: #F5F5F5 !important;
}

.product__card__area {
	padding-top: 25px;
	border-top: 1px solid #BCBCBC;
}
.product__card__area label .option {
        color:  #717171;
}
.product__card__wrapper {
    padding: 25px 0px;
    gap: 10px;
}

.product__card input {
	position: absolute;
	inset: 0;
	opacity: 0;
    visibility: hidden;
}
.product__card label {
    border-radius: 12px;
    background: var(--Card-Linear, linear-gradient(156deg, rgba(236, 233, 233, 0.91) -37.61%, #FFF 19.37%));
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    padding: 6px;
    transition: all .3s;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    display: block;
    height: 100%;
}
.product__card label .card__content {
	padding: 14px;
	height: 100%;
}
.product__card label span {
    color: var(--input-value-color, #1A1D1E);
    font-size: 12px;
    line-height: 18px;
    display: block;
    margin-top: 15px;
} 
.product__card label:hover {
    border: 1px solid #175CD3;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
.product__card label img.selected {
    opacity: 0;
    visibility: hidden;
    width: 0;
}

.product__card input:checked + label img.unselected {
    opacity: 0;
    visibility: hidden;
    width: 0;
}
.product__card input:checked + label img.selected {
    opacity: 1;
    visibility: visible;
    width: auto;
}
.product__card input:checked + label {
    border-radius: 12px;
    background: #175CD3;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
.product__card input:checked + label .card__content {
    border-radius: 10px;
    border: 1.089px solid #FFF;
    background: linear-gradient(113deg, rgba(255, 255, 255, 0.51) 3.51%, rgba(255, 255, 255, 0.00) 111.71%);
    box-shadow: 8.709px 10.886px 17.418px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6.53164529800415px);
}
.product__card input:checked + label span {
    color: #fff;
}
/* Desktop default */
.product__card__wrapper__two {
    display: flex !important;
    justify-content: center !important;
}

.product__card__wrapper__two .product__card {
    width: 157px !important;
}

/* Mobile styles */
@media (max-width: 767px) {
    .product__card__wrapper__two .product__card {
        width: 100% !important;
    }
}

.billing-frequency {
    background-color: #F9F9F9;
    border-radius: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin: 5px;
}

.billing-frequency .billing-frequency-title {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #000000;
}

.QuestionJobDuties {
    background-color: #DEF0F9;
    border-radius: 10px;
    padding-right: 10px;
    padding-bottom: 20px !important;
    padding-left: 10px;
}

.hippainfo {
  background-color: #DEF0F9;
  border-radius: 10px;
  padding-top: 5px !important;
  padding-right: 20px !important;
  padding-bottom: 5px !important;
  padding-left: 20px !important;

}

.Childreninfo {
  background-color: #DEF0F9;
  border-radius: 10px;
  padding-right: 10px;
  padding-bottom: 20px !important;
  padding-left: 10px;

}
.spouse-selection {
    background-color: #DEF0F9;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px !important;
    padding-left: 10px;
}

.spouse-selection .spouse-selection-title {
    font-size: 17px;
    line-height: 1.4;
    color: #000000;
}

/* Modal */

.modal-dialog {
  margin-top: 100px;
}

.modal-content {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #767676;
  padding: 16px;
}

.modal-title {
    color: #333;
    font-size: 14px !important;
    line-height: 25.5px !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}
.btn-close {
  background-color: transparent;
  border: none;
  font-size: 24px;
  padding: 8px;
  color: #212529 !important;
}
.btn-close:focus {
    outline: 2px solid #0056b3 !important; 
}

.modal-body {
  padding: 24px;
}

.modal-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.modal-body p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal-body .footnote {
  font-size: 14px;
  color: #212529;
  margin-top: 24px;
}

/* Accorion Body */

.accordion-body {
  border-radius: 10px;
}
/* ADA /
/ Provide visual outline for interactive elements when they receive focus */
.logo-area a:focus,
.help_blk > a:focus,
.Need_help ul li a:focus,
.Need_img a:focus,
.custom__tooltip:focus,
.btn.btn-fill:focus,
.footer__wrapper a:focus,
.d-flex.align-items-center.fw-semibold:focus,
.iconTooltip:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus,
.Bankaccount input[type="radio"]:focus + label,
.appnoada:focus,
.eft:focus,
.esig:focus,
.inotices:focus,
.roleCheckbox input[type="checkbox"]:focus + label {
    outline: 2px solid #0066CC;
    /*outline-offset: 2px;*/
}

/* Ensure sufficient contrast ratio for the visual focus indicator */
.logo-area a:focus,
.help_blk > a:focus,
.Need_help ul li a:focus,
.Need_img a:focus,
.custom__tooltip:focus,
.btn.btn-fill:focus,
.Bankaccount input[type="radio"]:focus + label,
.appnoada:focus,
.eft:focus,
.esig:focus,
.inotices:focus,
.roleCheckbox input[type="checkbox"]:focus + label {
    background-color: #fff;
    color: #000;
}

/* Additional focus styles */
.d-flex.align-items-center.fw-semibold:focus,
.iconTooltip:focus,
.btn.btn-fill:focus {
    border-color: #0066CC;
}

.btn.btn-fill:focus {
    color: #fff;
}

/* Set input field height to 40px and border color for focus state */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #0066CC;
    height: 40px; /* Added height */
}

/* Ensure sufficient contrast ratio for the radio button focus indicator */
.radio-button__input:focus + .radio-button .radio-button__control {
    background-color: #fff;
    border-color: #0066CC;
}

/* Provide outline for the select elements when they receive focus */
select:focus {
    outline: 2px solid #0066CC;
}

/* Ensure sufficient contrast ratio for the select element focus indicator */
select:focus {
    background-color: #fff;
    color: #000;
    border-color: #0066CC;
}
.tooltip-icon {
margin-left: 5px;
color: #007bff;
cursor: pointer;
        }
.learnmore {
font-size: 16px;
color: #333; /* or the default color you prefer */
text-decoration: none;
transition: color 0.3s ease;
}
.learnmore:hover {
color: #0066CC;
}
.learnmore:focus {
outline: 2px solid #0066CC;
outline-offset: 2px;
color: #0066CC;
}
.learnmore .fa {
margin-right: 5px;
}

/* stepper style updated for ada compliance */
.journey_indicator {
  padding: 40px 10px 40px 40px;
  list-style-type: none;
}

.journey_indicator .step {
  height: 68px;
  position: relative;
}

.journey_indicator .step::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 22px;
  height: 44px;
  width: 2px;
  background-color: #CCCCCC;
}

.journey_indicator .step:last-child::before {
  height: 0;
  width: 0;
}

.journey_indicator .step .d-inline-flex {
  color: #1A1D1E;
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.21px;
  gap: 4px;
  transition: all .3s;
  text-decoration: none !important;
  pointer-events: none;
}

.journey_indicator .step.active .d-inline-flex {
  font-weight: 600;
  color: #1A1D1E;
  text-decoration: overline;
}

.journey_indicator .step.active img {
  filter: brightness(0);
}

.journey_indicator .step.completed .d-inline-flex {
  font-weight: 600;
  color: #1A1D1E;
}

.journey_indicator .step.completed img {
  filter: invert(51%) sepia(11%) saturate(1864%) hue-rotate(42deg) brightness(92%) contrast(87%);
}

/* Hide stepper on screens smaller than 992px */
@media (max-width: 991px) {
  .journey_indicator {
    display: none;
  }
}

/* stepper style updated for ada compliance end */


/* Repsonsive stepper */
    .header__bar {
        background: #F2F2F2;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.16) inset;
        height: 10px;
        width: 100%;
    }
    .header__bar .single__bar.active {
        width: 50%;
        height: 10px;
        background-color: #0066CC;
    }
    
 /* Repsonsive stepper end */


.rounded-image {
    border-radius: 15px;
}

 /* Card  */
.card-productDefault {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #ccc; !important;
    display: block;
    border-radius: 10px;
    transition: border-color .15s linear !important;
    background: #fff !important; /* Default background color */
}

.card-productDefault-margin {
    margin: 12px 0 12px 0 !important;
}

.card-productDefault .card-block {
    padding: 0 15px 15px !important;
}

.card-productDefault[data-clickable]:hover {
    border: 1px solid #999 !important;
}

.card-productDefault .card-header {
    background-color: #fff !important;
    border-bottom: 1px solid #ccc !important;
}

.card-module-heading {
    background-clip: #666 !important;
}

.card-responsive {
    display: block !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    transition: border-color .15s linear !important;
    background: #f0f8ff !important; /* Light blue background color */
    padding: 15px !important;
    margin-bottom: 30px !important;
}

@media (max-width: 576px) {
    .card-responsive {
        margin: 12px 0 !important;
        background: #e0f7fa !important; /* Different light blue background color for small screens */
    }
}

 /* Card End */

/* Enroll Buttons */
.enrollButton label {
    color: #1E2A5C;
    margin-bottom: 0;
    line-height: 1.5em;
}
.enrollButton .buttonState {
    display: block;
    width: 100%;
    height: 150px;
    padding: 92px 12px 20px;
    margin-top: 16px;
    border: 2px solid #7F8489 !important;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    text-align: center;
    color: #1E2A5C;
    cursor: pointer;
    transition: all .3s;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center 12px;
    position: relative; /* Ensure the pseudo-element is positioned relative to the button */
}
.enrollButton.childButton .buttonState,
.enrollButton.spouseButton .buttonState,
.enrollButton.oliButton .buttonState,
.enrollButton.ltdButton .buttonState {
    background-size: 72px 72px;
}
.enrollButton.childButton .buttonState {
    background-image: url('../../uploads/00001219/child-btn.svg');
}
.enrollButton.spouseButton .buttonState {
    background-image: url('../../uploads/00001219/spouse-btn.svg');
}
.enrollButton.oliButton .buttonState {
    background-image: url('../../uploads/00001357/oli-btn.svg');
}
.enrollButton.ltdButton .buttonState {
    background-image: url('../../uploads/00001357/ltd-btn.svg');
}
.enrollButton .buttonState.active {
    color: #1E2A5C;
    font-weight: 500;
    border: 3px solid #0066cc !important;
    background-image: url('../../uploads/00001219/check_mark_active.svg');
    background-position: center 12px, center;
    background-repeat: no-repeat, no-repeat;
    background-size: 72px 72px, auto;
}

/* Add checkmark icon when button is active */
.enrollButton .buttonState.active::after {
    content: '';
    position: absolute;
    top: 12px; /* Adjust the position according to your design */
    left: 50%; /* Center the icon horizontally */
    transform: translateX(-50%);
    width: 72px; /* Adjust the size according to your design */
    height: 72px; /* Adjust the size according to your design */
    background-image: url('../../uploads/00001219/check_mark_active.svg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.enrollButton .buttonState:hover,
.enrollButton .buttonState:focus {
    background-color: #F9FBFD;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none; 
    border: 2px solid #0066cc !important; 
}
.enrollButton .buttonState:not(.active):hover,
.enrollButton .buttonState:not(.active):focus {
    background-color: #FFF; 
    border: 2px solid #BCBCBC !important; /* Default border color on unhover/unfocus */
}
.enrollButton .buttonState:focus-visible {
    background-color: #F9FBFD;
    box-shadow: 0 0 0 3px #0066cc, 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
    border: 2px solid #0066cc !important;
}
.enrollButton .spacer {
    display: none;
}

/* Disabled state */
.enrollButton .buttonState:disabled,
.enrollButton .buttonState.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #F0F0F0;
    border: 2px solid #D0D0D0 !important;
}

.super-obvious-disabled {
    border: 5px solid purple !important;
    background: red !important;
    color: white !important;
    transform: scale(0.9);
}

.enrollButton .buttonState:disabled:hover,
.enrollButton .buttonState.disabled:hover,
.enrollButton .buttonState:disabled:focus,
.enrollButton .buttonState.disabled:focus {
    background-color: #F0F0F0;
    box-shadow: none;
    border: 2px solid #D0D0D0 !important;
}

.enrollButton .buttonState:disabled:focus-visible,
.enrollButton .buttonState.disabled:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.5);
}

/* Product Card */

.product__card__area {
    padding-top: 25px;
    border-top: 1px solid #BCBCBC;
}

.product__card__area label .option {
    color: #717171;
}

.product__card__wrapper {
    padding: 25px 0px;
    gap: 10px;
}

.product__card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.product__card label {
    border-radius: 12px;
    background: linear-gradient(156deg, rgba(236, 233, 233, 0.91) -37.61%, #FFF 19.37%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    padding: 6px;
    transition: all .3s;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    display: block;
    height: 100%;
}

.product__card label .card__content {
    padding: 14px;
    height: 100%;
}

.product__card label span {
    color: #1A1D1E;
    font-size: 12px;
    line-height: 18px;
    display: block;
    margin-top: 15px;
}

.product__card label:hover {
    border: 1px solid #175CD3;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.product__card label img.selected {
    opacity: 0;
    visibility: hidden;
    width: 0;
}

.product__card input:checked + label img.unselected {
    opacity: 0;
    visibility: hidden;
    width: 0;
}

.product__card input:checked + label img.selected {
    opacity: 1;
    visibility: visible;
    width: auto;
}

.product__card input:checked + label {
    border-radius: 12px;
    background: #175CD3;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.product__card input:checked + label .card__content {
    border-radius: 10px;
    border: 1.089px solid #FFF;
    background: linear-gradient(113deg, rgba(255, 255, 255, 0.51) 3.51%, rgba(255, 255, 255, 0.00) 111.71%);
    box-shadow: 8.709px 10.886px 17.418px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6.53164529800415px);
}

.product__card input:checked + label span {
    color: #fff;
}

.product__card__wrapper__two .product__card {
    width: 157px;
}


/* Product Card End */


/* SSO Information Card */

.personal-info-container {
    width: 100%;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 12px;
}

.personal-info-details h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 10px;
    color: #343a40;
    border-bottom: 1px solid #ccc;
}

.personal-info-details h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 10px;
    color: #ffffff;
    background-color: #007DC3;
    padding: 8px 12px;
    border-radius: 4px;
}

.personal-info-label,
.personal-info-value {
    color: #303131;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 20px;
    word-wrap: break-word;
    display: inline-block;
}

.personal-info-label {
    font-weight: 700;
    width: 180px;
    vertical-align: top;
}

.personal-info-value {
    font-weight: 400;
    margin-bottom: 5px;
}

.info-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
}

.info-card-text {
    width: 100%;
    text-align: center;
    color: #212529;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .personal-info-label {
        width: auto;
        margin-right: 10px;
    }
}


/* SSO Information Card End */

/* Review Application Accordian */

.accordion-body {
padding: 30px;
background: #F5F5F5;
box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
border-radius: 12px;
padding: 30px;
}
.info-columns {
display: flex;
justify-content: space-between;
gap: 32px;
padding: 20px 0;
}
.column {
flex: 1;
}
.label {
color: #475467;
font-size: 14px;
font-family: Inter;
font-weight: 700;
line-height: 20px;
}
.value {
color: #475467;
font-size: 14px;
font-family: Inter;
font-weight: 400;
line-height: 20px;
}
.column br {
content: "";
margin: 0.5em;
display: block;
}
.bene-separator {
border: none;
border-top: 1px solid #B9B9B9;
margin: 20px 0;
}
.dependent-header {
color: #475467;
font-size: 15px;
font-family: Inter;
font-weight: 700;
line-height: 20px;
word-wrap: break-word;
}

/* Review Application Accordian End */

/* Table Header Start */

.children_information thead th {
background-color: #F9F9F9;
border: none;
}
.children_information {
border: none;
}

/* Table Header End  */

.physician {
    font-size: 17px;
    line-height: 1.4;
    padding-top: 4px;
    color: #000000;
    margin-bottom: 0;
    border-top: 5px solid #000000;
}

.form__title .physician {
    font-size: 17px;
    line-height: 1.4;
    color: #333; 
    padding-top: 10px; 
}

.highlighted-text {
  font-size: 16px !important;
  color: #333 !important;
}

.light-rounded-bg {
  background-color: #B9E6FE;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .responsive-light-rounded-bg {
    background-color: #B9E6FE;
    border-radius: 10px;
  }
}

.header-lightbackground {
background-color: #F1F1F1;
border-radius: 10px;
}

@media (max-width: 768px) {
  .header-lightbackground {
    background-color: #F1F1F1;
    border-radius: 10px;
    margin-top: 12px;
  }
}
.blueColor {
    color: #0066CC;
}

/* Thank you page applications */


.nav-tabs {
    margin-top: 0;
    padding-top: 0;
}
.nav-tabs .nav-link {
    color: #495057;
    background-color: #f8f9fa;
    border: 1px solid #767676;
    padding: 0.75rem 1rem;
    font-display: swap;
}
.nav-tabs .nav-link:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}
.nav-tabs .nav-link:focus-visible {
    outline: 3px solid #0066CC;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px #fff;
}
.nav-tabs .nav-link:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}
.nav-tabs .nav-link.active {
    color: #0066CC !important;
    background-color: #fff;
    border-color: #767676 #767676 #fff;
}

.payment-info {
    max-width: 400px;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px;
}

.payment-info__title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 10px 0;
    color: #333;
}

.payment-info__icon {
    margin-right: 8px;
    color: #333;
}

.payment-info__text {
    margin: 0;
    font-size: 14px;
}

.payment-info__highlight {
    font-weight: bold;
}

/* Lottie animation controls */

.lottie-animation {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1;
}

.lottie-animation dotlottie-player {
        width: 200px; /* Adjust as needed */
        height: 200px; /* Adjust as needed */
}

/* Download buttons */

.pdf_download_button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0071e3;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pdf_download_button:hover {
    background-color: #005bb5;
}

.pdf_download_button:active {
    background-color: #006edb;
    transform: scale(0.98);
}

/* ADA focus styles */
.pdf_download_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 250, 0.6);
}

.pdf_download_button:focus:not(:focus-visible) {
    box-shadow: none;
}

.pdf_download_button:focus-visible {
    outline: 2px solid #0071e3;
    outline-offset: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .pdf_download_button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .pdf_download_button {
        font-size: 15px;
        padding: 9px 18px;
    }
}

@media (max-width: 320px) {
    .pdf_download_button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Prefix */

.app-number-prefix {
    font-size: 1.25rem; /* Default size, equivalent to h5 */
}

.application-number {
    font-size: 1rem;
    word-break: break-all;
}

@media (max-width: 768px) {
    .app-number-prefix {
        font-size: 1.1rem;
    }
    .application-number {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .app-number-prefix {
        font-size: 1rem;
    }
    .application-number {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .app-number-prefix {
        font-size: 0.9rem;
    }
    .application-number {
        font-size: 0.8rem;
    }
}
/*============ Thank you Page Hero Start =============*/

.hero-area1 .container {
  max-width: 1040px;
}

.hero-area1 .row {
  align-items: center;
}

.hero_text {
  width: 320px;
}

.hero_text p {
 color: #000000;
 font-size: 18px;
 font-family: Inter;
 font-weight: 400;
 line-height: 28px;

}

.hero_text h1 {
 color: #000000;
 font-size: 40px;
 font-family: Inter;
 font-weight: 700;
 line-height: 50px;
 letter-spacing: -0.96px;
}

.hero_img {
  text-align: center;
}
.responsive-hide {
    display: block;
}

@media (max-width: 767px) {
    .responsive-hide {
        display: none;
    }
}

/*============ Thank You Page Hero End =============*/

/*============ Thank You Page Service Start =============*/

.service-area1 .row {
  padding-bottom: 60px;
  margin-top: -60px;
}

/* Card styling */
.svc_blk1 {
  border-radius: 10px;
  background: var(--Gradients-Card-Gradient, linear-gradient(152deg, rgba(236, 233, 233, 0.91) -34.18%, #FFF 69.31%));
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  text-align: center;

  padding: 30px 0px;
  margin-bottom: 30px;
}

.svc_blk1 h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.svc_blk1 p {
  font-size: 14px;
  color: #666;
}


/* Tablet screen adjustments (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container.lg {
        max-width: 590px;
    }
    
    .hero-area1 .row {
        flex-direction: column-reverse;
    }
    
    .hero_text {
        width: 100%;
        text-align: center;
        max-width: 500px;
        margin: auto;
        margin-bottom: 30px;
    }
    
    .service-area1 .row {
        flex-wrap: wrap; 
    }
    
    .hero_text h1 {
        font-size: 30px;
    }
}

/* Small screen adjustments (320px - 767px) */
@media (max-width: 767px) {

    .hero-area .row {
        flex-direction: column-reverse;
    }
    
    .hero_text {
        width: 100%;
        text-align: center;
        max-width: 320px;
        margin: auto;
        margin-bottom: 30px;
    }

    .hero_text p {
        font-size: 16px;
        color: #000000;
    }

    .hero_img {
        max-width: 250px;
        margin: auto;
    }

    .service-area1 .row {
        flex-direction: column;
    }
}

/*============ Thank You Page Service End =============*/



/* 
==========================
Review Page Start
==========================
*/
.review-application {
 background: #f8f9fa;
 color: #333;
 line-height: 1.5;
 padding: 40px 0;
 font-family: 'Inter', sans-serif;
}

.review-application .info-section {
 background: white;
 border-radius: 8px;
 padding: 24px;
 margin-bottom: 24px;
 border: 1px solid #e9ecef;
}

.review-application .section-title {
 font-size: 20px;
 font-weight: 500;
 margin-bottom: 5px;
 padding-bottom: 16px;
 border-bottom: 1px solid #e9ecef;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.review-application .subsection-title {
 font-size: 14px;
 font-weight: 600;
 margin: 10px 0 16px;
 color: #444;
}

.review-application .edit-button {
 background: #666;
 color: white;
 border: none;
 padding: 4px 12px;
 border-radius: 100px;
 font-size: 12px;
 transition: all 0.2s ease;
 cursor: pointer;
 text-decoration: none;
 display: inline-block;
 font-family: 'Inter', sans-serif;
}

.review-application .edit-button:hover {
 background: #000;
 color: white;
 text-decoration: none;
}

.review-application .category-label {
 text-transform: uppercase;
 color: #666;
 font-size: 13px;
 letter-spacing: 0.5px;
 margin-bottom: 12px;
}

.review-application .policy-product-name {
 text-transform: uppercase;
 color: #444;
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 0.8px;
 margin: 0 0 16px;
 padding-left: 0;
 position: relative;
}

.review-application .info-row {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 margin-bottom: 24px;
}

.review-application .info-item {
 min-width: 0;
 padding: 16px;
 border-radius: 6px;
 background: #f8f9fa;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-application .info-item-condition {
 min-width: 0;
 padding: 16px;
 border-radius: 6px;
 background: #fff;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-application .info-item:hover {
 transform: translateY(-2px);
 box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-application .info-group {
 padding: 12px 0;
 border-bottom: 1px solid #f1f3f5;
}
.review-application .info-group-condition {
 padding: 2px 0;
}
.review-application .info-group:last-child {
 border-bottom: none;
}

.review-application .child-info-section {
 background: #f1f3f5;
 border-radius: 4px;
 padding: 16px;
}

.review-application .info-item-inline {
 margin-bottom: 8px;
 padding: 8px;
 border-radius: 4px;
}

.review-application .info-item-inline:nth-child(even) {
 background: #e9ecef;
}

.review-application .info-item-inline .info-value {
 display: inline-block;
 margin-right: 8px;
 font-size: 14px;
 line-height: 1.6;
}

.review-application .info-item-inline .info-value:after {
 content: '|';
 margin: 0 8px;
 color: #ccc;
}

.review-application .info-item-inline .info-value:last-child:after {
 content: '';
 margin-right: 0;
}

.review-application .answer-label {
 color: #666;
 font-weight: 500;
 min-width: 100px;
 font-size: 13px;
}

.review-application .info-label {
 color: #666;
 font-size: 13px !important;
 margin-bottom: 4px;
 text-transform: uppercase;
 letter-spacing: .5px;
}
.review-application .label-value {
    color: #475467;
    font-size: 13.5px;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
}
.review-application .info-value {
 color: #444;
 font-size: 13.5px;
}

.review-application .policy-container {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 8px;
 margin-bottom: 24px;
}

.review-application .policy-link {
 color: #0066cc;
 text-decoration: none;
 font-size: 15px;
}

.review-application .policy-separator {
 color: #ccc;
}

.review-application .coverage-details {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 align-items: center;
 margin-bottom: 16px;
}

.review-application .coverage-item {
 display: flex;
 align-items: center;
 gap: 8px;
}

.review-application .inner-card {
 background: #f8f9fa;
 border-radius: 6px;
 padding: 16px;
 margin-bottom: 16px;
}

.review-application .inline-info {
 display: flex;
 gap: 32px;
 align-items: flex-start;
}

.review-application .question-container {
 padding: 16px;
 border-radius: 6px;
 background: #f8f9fa;
 margin-bottom: 16px;
}

.review-application .question-text {
 font-size: 15px;
 line-height: 1.6;
 color: #444;
 margin-bottom: 16px;
}

.review-application .answers-group {
 display: flex;
 flex-direction: column;
 gap: 8px;
 margin-top: 12px;
}

.review-application .person-answer {
 display: flex;
 align-items: center;
 gap: 16px;
}

.review-application .answer-value {
 min-width: 60px;
 font-weight: 500;
}

.review-application .question-details {
 margin-top: 16px;
 padding-top: 16px;
 border-top: 1px solid #e9ecef;
}

.review-application .small-text {
 font-size: 13px;
}

.review-application .condition-list {
 margin: 12px 0;
 line-height: 1.4;
 color: #666;
 font-size: 13px;
}

.review-application .condition-details {
 font-size: 13px;
 display: flex;
 flex-direction: column;
 gap: 8px;
 margin-top: 12px;
}

.review-application .condition-details .answer-value {
 display: flex;
 align-items: center;
 gap: 8px;
}

@media (max-width: 768px) {
 .review-application .section-title {
   font-size: 20px;
 }
 
 .review-application .info-section {
   margin: 0 12px 20px 12px;
   padding: 16px;
 }

 .review-application .info-row {
   grid-template-columns: 1fr;
 }

 .review-application .inner-card,
 .review-application .child-info-section,
 .review-application .question-container {
   padding: 12px;
 }

 .review-application .info-item-inline {
   padding: 6px;
 }

 .review-application .info-item-inline .info-value {
   font-size: 13px;
   line-height: 1.5;
 }

 .review-application .policy-container {
   flex-direction: column;
   align-items: flex-start;
 }

 .review-application .policy-separator {
   display: none;
 }

 .review-application .coverage-details {
   flex-direction: column;
   align-items: flex-start;
 }

 .review-application .inline-info {
   gap: 32px;
 }

 .review-application .person-answer {
   justify-content: space-between;
 }
}

@media (max-width: 480px) {
 .review-application .info-section {
   margin: 0 8px 16px 8px;
   padding: 12px;
 }

 .review-application .inner-card,
 .review-application .child-info-section,
 .review-application .question-container {
   padding: 10px;
 }

 .review-application .info-item-inline {
   padding: 4px;
 }
}
/* 
==========================
Review Page End
==========================
*/
/* 
==========================
Slider Start
==========================
*/
.ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    color: #1c94c4;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: #CC0033;
    margin-top: -11px;
    outline: 3px solid #FFF;
}

span.slidervalue {
    visibility: hidden !important;
    padding: 0;
}

.ui-slider {
    margin-top: 12px;
}

.ui-widget-content {
    border: 2px solid #8E8E8E;
    background: #eeeeee;
    color: #333333;
    height: 2px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.slider_limits {
    font-size: 14px;
}

.slider-element .spacer {
    display: none;
}

.ui-widget :active,
.ui-widget :focus {
    background: #fff;
    border: 2px solid #014e9e !important;
    /* outline: 3px solid #edf8ff; */
}
/* 
==========================
Slider End
==========================
*/
/* 
==========================
Core Layout & Components
==========================
*/
/* Card Layout */
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  flex: 0 0 calc(33.33% - 10px);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-label {
  font-size: 16px;
  font-weight: bold;
}

/* Payment & Totals */
.total-payment {
  font-size: 38px;
  font-weight: 500;
}

/* Form Elements */
.productField input[type="radio"]:focus + label,
input[type=file]:focus, 
input[type=checkbox]:focus, 
input[type=radio]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.productField input[type="radio"]:focus + label {
  border: 2px solid #005fcc !important; 
  padding: 5px;
  border-radius: 0;
}

/* Utility Classes */
.test-opacity {
  opacity: 0.5;
}

.health-questions {
  display: none;
}

/* 
==========================
Responsive Stepper
==========================
*/
.responsive-stepper {
    display: none; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

/* 
==========================
Media Queries
==========================
*/
/* Large Screens: 992px to 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
  .customize__header {
    padding: 15px 40px;
  }
  
  .total__rate {
    padding: 0 60px 18px;
  }
  
  .total__monthly__rate {
    padding: 18px 60px;
  }
  
  .card {
    flex: 0 0 calc(33.33% - 10px);
  }

  .form__area {
    padding-top: 20px !important;
    padding-right: 15px !important;
    padding-bottom: 20px !important;
    padding-left: 15px !important;
  }
}

/* Tablet: 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  /* Layout & Spacing */
  .customize__header {
    padding: 15px 30px;
  }
  
  .total__rate {
    padding: 0 50px 18px;
  }
  
  .total__monthly__rate {
    padding: 18px 50px;
  }
  
  .card {
    flex: 0 0 calc(50% - 10px);
  }
  
  .hero__area__wrapper {
    padding: 50px 0px;
  }
  
  .form__area {
    padding-top: 15px !important;
    padding-right: 12px !important;
    padding-bottom: 15px !important;
    padding-left: 12px !important;
  }
  
  /* Typography */
  .hero__wrapper__content h1 {
    color: var(--dark_blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 16px;
  }
  
  .input__field.income label,
  .input__field.dob label {
    font-size: 12px;
  }
  
  /* Components */
  .btn.btn-outline-light,
  .btn.btn-fill {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .hero__thumb {
    right: 70px;
    width: 350px;
  }
  
  .footer__menu {
    gap: 20px;
  }
  
  /* Stepper Adjustments */
  .responsive-stepper h3 {
    font-size: 18px; 
  }
  
  .responsive-stepper span {
    font-size: 16px; 
  }
}

/* Mobile: Max 767px */
@media (max-width: 767px) {
  .form__area {
    padding-top: 10px !important;
    padding-right: 8px !important;
    padding-bottom: 10px !important;
    padding-left: 8px !important;
  }

  .btn.btn-outline-light,
  .coverage__amount,
  .btn.btn-fill {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .health-questions {
    display: inline;
  }
  
  .center-mobile {
    text-align: center !important;
  }
}

/* Large Mobile: 480px to 767px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Small Mobile: Max 479px */
@media (max-width: 479px) {
  .form__area {
    padding-top: 5px !important;
    padding-right: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 5px !important;
  }
}

/* Tablet and Below: Max 992px */
@media (max-width: 992px) {
  .original-stepper {
    display: none;
  }
  
  .responsive-stepper {
    display: flex; 
  }
  
  .responsive-stepper h3 {
    font-size: 16px;
    color: var(--dark_blue);
    margin-bottom: 10px;
  }
  
  .responsive-stepper span {
    font-size: 14px;
    color: #333;
  }
}

.col-five {
  flex: 0 0 20%; 
  max-width: 20%;
}

@media (max-width: 768px) { 
  .col-five {
    flex: 0 0 100%; 
    max-width: 100%; 
  }
}

/* redirect link */
.link-calculator {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.link-calculator span {
 font-size: 13px;
}

.link-calculator a {
 color: #0066CC;
 text-decoration: underline;
 font-size: 13px;
}

@media (max-width: 768px) {
 .link-calculator {
   flex-direction: column;
   align-items: flex-start;
 }
 .link-calculator span {
   margin-top: 10px;
 }
}



/* 
====================================================
Marketing Insurance Landing Page Start
====================================================
*/


/* Marketing Landing CSS */
.marketing-landing-container {
  max-width: 1179px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styles */
.marketing-landing-header {
  width: 100%;
  background-color: white;
  padding: 15px 0;
}

.marketing-landing-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marketing-landing-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.marketing-landing-alumni-text {
  font-family: Inter, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin-top: 2px;
}

.marketing-landing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.marketing-landing-apply-btn {
  background-color: #CC0033;
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-family: Inter, Arial, sans-serif;
  display: inline-block;
  text-align: center;
  min-width: 120px;
}

.marketing-landing-questions {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
  font-family: Inter, Arial, sans-serif;
}

.marketing-landing-questions a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

/* Hero Styles */
.marketing-landing-hero {
  width: 100%;
  background-color: #222222;
  position: relative;
}

.marketing-landing-hero-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
}

.marketing-landing-hero-text {
  width: 50%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marketing-landing-hero-text h1 {
  color: white;
  font-size: 46px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 0;
}

.marketing-landing-hero-text p {
  color: white;
  font-size: 18px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  margin: 0;
}

.marketing-landing-hero-thumb {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.marketing-landing-hero-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover; 
  object-position: center; 
  position: absolute;
  right: 0; 
  top: 0;
}

/* Navigation Styles */
.marketing-landing-nav {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e0e0e0;
}
.marketing-landing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.marketing-landing-nav-items-wrapper {
  display: flex;
  justify-content: center;
}
.marketing-landing-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.marketing-landing-nav-list-item {
  display: inline-block;
  width: 50%; 
  text-align: center;
}
.marketing-landing-nav-item {
  padding: 15px 30px;
  font-size: 18px;
  font-family: Inter, Arial, sans-serif;
  text-decoration: none;
  color: #131313;
  font-weight: 400;
  display: block; 
  border-bottom: 3px solid transparent;
  transition: background-color 0.2s ease;
  width: 100%; 
  box-sizing: border-box; 
}
.marketing-landing-nav-item.active {
  color: #CC0033;
  font-weight: 700;
  border-bottom: 3px solid #CC0033;
}
.marketing-landing-nav-item:hover {
  background-color: #f5f5f5;
}

/* Divider for desktop only */
@media (min-width: 769px) {
  .marketing-landing-nav-list-item:first-child {
    position: relative;
  }
  
  .marketing-landing-nav-list-item:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%; 
    width: 1px;
    background-color: #222;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .marketing-landing-hero-wrapper {
    flex-direction: column;
    height: auto;
  }
  
  .marketing-landing-hero-text {
    width: 100%;
    padding: 30px 0;
    order: 2;
  }
  
  .marketing-landing-hero-thumb {
    position: relative;
    width: 100%;
    height: auto;
    order: 1;
  }
  
  .marketing-landing-hero-thumb img {
    width: 100%;
    height: auto;
    max-width: 100%;
    position: static;
    display: block;
  }
  
  .marketing-landing-hero-text h1 {
    font-size: 32px;
  }
  
  /* Desktop styles remain the same for tablet size */
  .marketing-landing-nav-items-wrapper {
    flex-direction: row;
    align-items: center;
  }
  
  .marketing-landing-nav-list {
    flex-direction: row;
    align-items: center;
  }
  
  .marketing-landing-nav-list-item {
    width: 50%;
    text-align: center;
  }
  
  .marketing-landing-nav-item {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}
/* Add vertical stacking for mobile devices */
@media (max-width: 480px) {
  .marketing-landing-hero-text h1 {
    font-size: 28px;
  }
  
  .marketing-landing-header-content {
    flex-direction: column;
    align-items: center;
  }
  
  .marketing-landing-logo {
    align-items: center;
    margin-bottom: 15px;
  }
  
  .marketing-landing-cta {
    align-items: center;
  }
  
  /* Stack navigation items vertically on mobile */
  .marketing-landing-nav-items-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .marketing-landing-nav-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .marketing-landing-nav-list-item {
    width: 100%;
    text-align: center;
  }
  
  .marketing-landing-nav-item {
    width: 100%;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .marketing-landing-nav-item.active {
    border-bottom: 3px solid #CC0033;
  }
}
/* 
====================================================
Marketing Insurance Landing Page End
====================================================
*/

/* 
==========================
Marketing Content Styles
==========================
*/

.marketing-content {
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 40px 0px;
    background-color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    color: #222222;
}

/* Header */
.marketing-content__header {
    margin-bottom: 38px;
    padding-left: 40px;
}

.marketing-content__title {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

/* Introduction */
.marketing-content__intro {
    padding-left: 40px;
    margin-bottom: 38px;
}

.marketing-content__subtitle {
    color: #CC0033;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
}

.marketing-content__text {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* Two Column Layout */
.marketing-content__columns {
    display: flex;
    flex-wrap: wrap;
    padding-left: 40px;
    margin-bottom: 38px;
    gap: 38px;
}

/* Features Section */
.marketing-content__features {
    flex: 1;
    min-width: 300px;
}

.marketing-content__list {
    list-style-type: disc; /* Changed from none to disc */
    padding-left: 20px; /* Added left padding for bullets */
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.marketing-content__list li {
    margin-bottom: 16px;
    color: #222222;
    padding-left: 10px; /* Added padding for better text alignment with bullets */
}

.marketing-content__highlight {
    color: #CC0133;
    text-decoration: underline;
}

/* Calculator Section */
.marketing-content__calculator {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marketing-content__calculator-container {
    width: 100%;
    margin-bottom: 20px;
}

.marketing-content__calculator-placeholder {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #222222;
}

.marketing-content__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.marketing-content__cta-button {
    background-color: #CC0033;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.marketing-content__cta-button:hover {
    background-color: #A5002A;
}

.marketing-content__cta-text {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

/* Terms Section */
.marketing-content__terms {
    padding-left: 20px;
    margin-bottom: 50px;
}

.marketing-content__term-item {
    margin-bottom: 20px;
}

.marketing-content__term-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 5px 0;
}

.marketing-content__term-text {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 10px 0;
}

/* Info Box with Image */
.marketing-content__info-box {
    background-color: #222222;
    padding: 0;
    color: white;
    border-radius: 20px;
}

.marketing-content__info-content {
    max-width: 100%;
}

.marketing-content__layout {
    display: flex;
    align-items: stretch;
}

.marketing-content__badge-container {
    flex: 0 0 300px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-content__badge {
    max-width: 230px;
    height: auto;
    border-radius: 0;
}

.marketing-content__text-container {
    flex: 1;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
}

.marketing-content__info-text {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px 0;
    padding-bottom: 0;
    border-bottom: none;
}

.marketing-content__divider {
    width: 95%;
    border: none;
    border-top: 1px solid white;
    margin: 20px 0;
}

.marketing-content__provider {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
}

.marketing-content__provider-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.marketing-content__provider-text {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    flex: 1;
}

/* Action Card Styles */
.marketing-content__action-card {
    width: 100%;
    max-width: 414px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.marketing-content__action-title {
    font-size: 18px;
    font-weight: 700;
    color: black;
    text-align: center;
    margin: 0 0 15px 0;
}

.marketing-content__action-icon-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.marketing-content__action-icon {
    width: 70px;
    height: 61px;
}

/* Button styles with distinct classes */
.marketing-content__quote-button,
.marketing-content__apply-button {
    width: 170px;
    height: 42px;
    background: #CC0033;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.marketing-content__quote-button:hover,
.marketing-content__apply-button:hover {
    background-color: #A5002A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marketing-content__action-card {
        max-width: 100%;
    }
    .marketing-content__calculator-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .marketing-content__features {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .marketing-content__action-title {
        font-size: 16px;
    }
    
    .marketing-content__quote-button,
    .marketing-content__apply-button {
        width: 160px;
        height: 38px;
        font-size: 17px;
    }
    
    .marketing-content__action-icon {
        width: 60px;
        height: 52px;
    }
}

/* 
==========================
Responsive Adjustments
==========================
*/

@media (max-width: 1024px) {
    .marketing-content__header,
    .marketing-content__intro,
    .marketing-content__columns,
    .marketing-content__terms {
        padding-left: 20px;
    }
    
    .marketing-content__title {
        font-size: 28px;
    }
    
    .marketing-content__subtitle {
        font-size: 20px;
    }
    
    .marketing-content__text,
    .marketing-content__list li {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .marketing-content {
        padding: 30px 15px;
    }
    
    .marketing-content__header,
    .marketing-content__intro,
    .marketing-content__columns,
    .marketing-content__terms {
        padding-left: 0;
    }
    
    .marketing-content__columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .marketing-content__title {
        font-size: 26px;
    }
    
    .marketing-content__subtitle {
        font-size: 18px;
    }
    
    .marketing-content__text,
    .marketing-content__list li {
        font-size: 15px;
        line-height: 22px;
    }
    
    .marketing-content__term-title {
        font-size: 15px;
    }
    
    .marketing-content__term-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .marketing-content__cta-button {
        font-size: 15px;
    }
    
    .marketing-content__layout {
        flex-direction: column;
    }
    
    .marketing-content__badge-container {
        flex: 0 0 auto;
        padding: 30px 20px;
    }
    
    .marketing-content__text-container {
        padding: 30px 20px;
    }
    
    .marketing-content__info-text {
        font-size: 15px;
        line-height: 22px;
    }
    
    .marketing-content__provider {
        flex-wrap: wrap;
    }
    
    .marketing-content__provider-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .marketing-content__badge {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .marketing-content {
        padding: 20px 10px;
    }
    
    .marketing-content__header,
    .marketing-content__intro,
    .marketing-content__terms {
        margin-bottom: 25px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .marketing-content__title {
        font-size: 22px;
    }
    
    .marketing-content__subtitle {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .marketing-content__text,
    .marketing-content__list li {
        font-size: 14px;
        line-height: 20px;
    }
    
    .marketing-content__term-title {
        font-size: 15px;
        line-height: 22px;
    }
    
    .marketing-content__term-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .marketing-content__cta-button {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .marketing-content__cta-text {
        font-size: 14px;
    }
    
    .marketing-content__text-container {
        padding: 25px 15px;
    }
    
    .marketing-content__info-text {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 20px;
    }
    
    .marketing-content__provider {
        gap: 15px;
    }
    
    .marketing-content__provider-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Calculator Styles Tokens from Rutgers */
.calculator {
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: var(--font-family-base);
}

.calculator__header {
    background-color: #CC0033;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.calculator__title {
    margin: 0;
    font-size: var(--font-size-xxl);
    font-weight: 600;
}

.calculator__content {
    padding: var(--spacing-l) var(--spacing-m);
}

.calculator__info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-s);
}

.calculator__info-column {
    display: flex;
    flex-direction: column;
}

.calculator__label {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.calculator__value {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: #CC0033;
    text-align: right;
}

.calculator__control-section {
    margin-bottom: var(--spacing-l);
}

.calculator__control-label {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-m);
}

.calculator__range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.calculator__min-value,
.calculator__max-value {
    font-size: var(--font-size-base);
    color: #666666;
}

/* Styling for the slider with focus only on handle */
.calculator__slider {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin: 0;
}

.calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #CC0033;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.calculator__slider:focus::-webkit-slider-thumb {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #0066CC;
}

.calculator__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #CC0033;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.calculator__slider:focus::-moz-range-thumb {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #0066CC;
}

/* Remove focus styling from the track */
.calculator__slider:focus {
    outline: none;
}

/* Horizontal controls layout for age range and button */
.calculator__horizontal-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: var(--spacing-l);
}

.calculator__age-container {
    flex: 1;
    min-width: 200px;
}

.calculator__button-container {
    flex: 1;
    min-width: 200px;
    margin-top: 30px;
}

/* Select dropdown styles - fixed version */
.calculator__select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.calculator__select {
    width: 100%;
    padding: 10px 15px;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background-color: #ffffff;
    border: 2px solid #cccccc;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    /* Add these properties to prevent text cut-off */
    text-overflow: ellipsis;
    line-height: 1.2;
    /* Add some extra padding to ensure text isn't cut off */
    padding-bottom: 12px;
    /* Prevent shifting during focus/selection */
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.calculator__select-wrapper::after {
    content: "▼";
    font-size: 12px;
    color: #666666;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Ensure this element stays on top */
    z-index: 1;
}

.calculator__select:focus {
    border-color: #0066CC;
    outline: none;
}

/* Add this to prevent text jumping on hover/focus */
.calculator__select option {
    padding: 10px;
    line-height: 1.2;
}

/* Button style */
.calculator__button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0;
    text-align: center;
    text-decoration: none;
}

.calculator__button:hover {
    background-color: #444444;
}

.calculator__button:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calculator__info-row {
        flex-direction: column;
        gap: var(--spacing-m);
    }
    
    .calculator__title {
        font-size: var(--font-size-xl);
    }
    
    .calculator__value {
        font-size: var(--font-size-xxl);
    }
    
    .calculator__control-label {
        font-size: var(--font-size-base);
    }
    
    /* Stack controls vertically on mobile */
    .calculator__horizontal-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .calculator__button-container {
        margin-top: 15px;
    }
    
    .calculator__button {
        font-size: var(--font-size-base);
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .calculator__content {
        padding: var(--spacing-m) var(--spacing-m);
    }
    
    .calculator__title {
        font-size: var(--font-size-lg);
    }
    
    .calculator__value {
        font-size: var(--font-size-xl);
    }
    
    .calculator__control-label {
        font-size: var(--font-size-base);
    }
    
    .calculator__min-value,
    .calculator__max-value {
        font-size: var(--font-size-sm);
    }
    
    .calculator__select {
        padding: 8px 12px 10px;
        font-size: var(--font-size-sm);
    }
    
    .calculator__button {
        font-size: var(--font-size-sm);
        padding: 10px;
    }
}
/* 
=============================
Marketing Content Styles End
=============================
*/
