#health-insurance {
    background-color: #f5f5f5;
    padding: 40px;
    text-align: center;
}

#health-insurance h2 {
    font-size: 24px;
    color: #007BFF; 
    margin-bottom: 20px;
}

#health-insurance p {
    font-size: 16px;
    color: #333; 
    margin-bottom: 20px;
}

.plan-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.category {
    flex: 1;
    max-width: 30%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
    text-align: left;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.category h3 {
    font-size: 18px;
    color: #007BFF;
}

.category p {
    font-size: 14px;
    color: #555;
}

.appointment-cta {
    margin-top: 30px;
}

.appointment-cta h3 {
    font-size: 20px;
    color: #333;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF; 
    color: #fff; 
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

.contact-button:hover {
    background-color: #0056b3;
}
