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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #2E5BFF, #4169E1);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header .logo img {
    height: 80px;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

/* Solutions Section */
.solutions {
    background: #f8f9fa;
    padding: 60px 0;
}

.solutions h2 {
    color: #2E5BFF;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: left;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.solution-card {
    padding: 25px;
    border-radius: 8px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.solution-card.orange {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
}

.solution-card.red {
    background: linear-gradient(135deg, #FF4500, #FF6347);
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.solution-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Health Plans Section */
.health-plans {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.health-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.health-plans p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #2E5BFF;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #1E4BEF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 91, 255, 0.3);
}

/* Accessible Plans Section */
.accessible-plans {
    background: #2E5BFF;
    color: white;
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* About Us Section */
.about-us {
    background: white;
    padding: 80px 0;
}

.about-us h2 {
    color: #2E5BFF;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.about-us > .container > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #FF8C00;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.2rem;
    color: #666;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #FF8C00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial span {
    font-weight: bold;
    color: #2E5BFF;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact h2 {
    color: #2E5BFF;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.contact-info a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2E5BFF;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .health-plans h2 {
        font-size: 2rem;
    }
    
    .accessible-plans .text-content h2 {
        font-size: 2rem;
    }
    
    .about-us h2 {
        font-size: 2rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .logo img {
        height: 60px;
    }
    
    .header h1 {
        font-size: 1.2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

