.banner-section {
    border-bottom: .5vw solid var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-image: url("../media/jpg/insurance.jpg");
    height: 30vw;
    padding: 6vw;
    align-items: center;
    position: relative;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0.8;
    z-index: 1;
}

.banner-section>* {
    position: relative;
    z-index: 2;
}

.banner-container {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    justify-content: center;
}

.banner-container h1 {
    font-size: 2.8vw;
    font-weight: 600;
    color: var(--gray);
}

.banner-container h1 span {
    color: var(--blue);
}

.banner-container p {
    font-size: 1.2vw;
    font-weight: 400;
    color: var(--black);
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
    max-width: 80%;
}

/* Estilos para el acordeón */
.accordion {
    max-width: 60vw;
    margin: 20px auto;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gray-2);
    color: var(--gray);
    font-weight: 400;
    padding: .5vw 1vw;
    cursor: pointer;
    width: 60vw;
}

.accordion-content {
    display: none;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .accordion-content {
    display: flex;
}

.accordion-item.active .accordion-content ul li {
    color: var(--gray);
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    justify-content: center;
    padding: 6vw;
}

.info-section h2 {
    color: var(--blue);
    font-size: 2.8vw;
    font-weight: 500;
}

.info-section p {
    font-size: 1.2vw;
    font-weight: 400;
    color: var(--black);
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
}

.toggle-btn {
    border: none;
    /* Remove border */
    background-color: transparent;
    /* Transparent background */
}

.toggle-btn i {
    font-size: 20px;
    /* Adjust the icon size */
    color: var(--blue);
}


/* Insurance Contact Styles */

.insurance-contact {
    background-color: var(--gray-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    padding: 6vw;
}

.insurance-contact h2 {
    color: var(--blue);
    font-size: 2.8vw;
    font-weight: 500;
}

.insurance-contact p {
    font-size: 1.2vw;
    font-weight: 400;
    color: var(--black);
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
}

.insurance-map {
    display: flex;
    width: 100%;
    height: 40vw;
}

@media (max-width: 900px) {
    .banner-section {
        background-position: center;
        height: 100vw;
        padding: 12vw 6vw;
    }

    .banner-container {
        gap: 3vw;
    }

    .banner-container h1 {
        font-size: 7vw;
    }

    .banner-container p {
        font-size: 4vw;
    }

    .info-section {
        padding: 12vw 6vw;
        gap: 3vw;
    }

    .info-section h2 {
        font-size: 7vw;
        text-align: center;
    }

    .info-section p {
        font-size: 4vw;
        text-align: center;
    }

    .insurance-contact {
        padding: 12vw 6vw;
    }

    .insurance-contact h2 {
        font-size: 7vw;
    }

    .insurance-contact p {
        font-size: 4vw;
    }

    .accordion-header {
        width: auto;
        padding: 3vw;
    }
    .accordion{
        width: 88vw;
        max-width: none;
    }
    .accordion-content ul{
        margin-left: 3vw;
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }
}