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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 40px 0;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Banner */
.top-banner {
    background-color: #444;
    color: white;
    text-align: center;
    padding: 5px 0;
}

.top-banner p {
    margin: 0;
    font-weight: bold;
}

/* Header */
header {
    background-color: transparent; position: absolute; width: 100%;
    padding: 15px 0;
}
header.inner {position:relative; background:#fff;}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inner-page h2 {text-align:left;}
.logo img {
    height: 60px;
}

.contact-info {
    text-align: right; line-height: 16px;
}
footer a {color:#f1f1f1;}
.inner-page table, .inner-page table td {text-align:left;}
.inner-page table td ul {padding-left:10px;}
.contact-info p {
    margin: 0;
    font-size: 0.9rem; color: #0078d7;
}

.phone-number {
    display: inline-block;
    color: #f8a100;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 130px 0 40px;
    background: white url(assets/bg.png) center bottom no-repeat; background-size: cover;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}
.hero h1 {color: #000; font-size: 42px;}
.hero h1 span {font-size: 18px;}
.hero-image {
    width: 35%;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.insurance-options {
    margin: 75px 0 40px; max-width: 550px;
}

.insurance-options h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
}
.relative-title {position: relative;}
.relative-title div {position:absolute; top: -3rem; right:8.5rem;}
.options-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option {
    flex: 1; text-decoration: none;
    min-width: 110px;
    background-color: #f16e16;
    color: white;
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.option p {margin-bottom: 0; line-height: 16px;}
.option.selected, .option:hover {
    background-color: #f8a100;
    transform: scale(1.05);
}

.option .icon {
    font-size: 14px;
    margin-bottom: 0px;
}

.disclaimer {
    font-size: 0.8rem; margin: 10px 0;
    color: #666;
}

/* Testimonial Section */
.testimonial {
    background-color: #0078d7;
    color: white;
    padding: 40px 0;
}

.testimonial-content {
    display: flex; padding: 40px 0 20px;
    align-items: center;
    gap: 10px;
}

.testimonial-image img {
    width: 100px;
    height: 100px; max-width: none;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text p {
    font-size: 1.2rem;
    font-style: italic; color:#fff;
    margin-bottom: 0px;
}

.author {
    font-weight: bold;
}

/* Carriers Section */
.carriers {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.carrier-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.carrier-logo {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-carriers {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.eligibility-info {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.blue-text {
    color: #0078d7;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Income Table */
.income-table {
    margin: 40px auto;
    max-width: 900px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Steps */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}

.step {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    text-align: left;
    border: 2px solid #eee;
}

.step:nth-child(1) {
    background-color: #e8f5e9;
    border-color: #81c784;
}

.step:nth-child(2) {
    background-color: #e3f2fd;
    border-color: #64b5f6;
}

.step:nth-child(3) {
    background-color: #fff8e1;
    border-color: #ffd54f;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #0078d7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #1e3a5f;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.menu-footer {font-size:13px;}
.menu-footer a {color:#f1f1f1;}
/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        text-align: center;
    }
    .hero h1 {font-size:36px; line-height:40px; text-align:center;}
    .insurance-options h2 {line-height:24px; margint-top:10px; text-align:center;}
    .hero h1 span {display:block;}
    .insurance-options {margin-top:0px;}
    .relative-title div {display:none;}
    .contact-info {
        text-align: right; width:180px;
        margin-top: 20px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .options-container {
        flex-direction: column;
    }
    
    .option {
        width: 100%;
    }
    
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 8px;
    }
}
