    .seguroFacultativo {
        background-color: var(--azulFuerte);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .seccion_seguro {
        width: 100%;
        padding: 0 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .seccion_seguro {
            padding: 4rem 10rem;
        }
    }

    .body_seguro {
        width: 100%;
        padding: 2rem 2rem;
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
    }

    @media (min-width: 768px) {
        .body_seguro {
            padding: 3rem 5rem;
            row-gap: 3rem;
        }
    }

    .faq-accordion {
        width: 100%;
        border: 1.5px solid #dde2ea !important;
        border-radius: 1rem !important;
        overflow: hidden !important;
    }

    .faq-item {
        border-bottom: 1.5px solid #cccfd4 !important;
    }

    .faq-item:last-child {
        border-bottom: none !important;
    }

    .faq-trigger {
        width: 100% !important;
        background: #fff !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 2.5rem 2.5rem !important;
        text-align: left !important;
        transition: background 0.2s ease !important;
        gap: 1.5rem !important;
    }

    .faq-trigger:hover {
        background: #f7f9fb !important;
    }

    .faq-trigger-text {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        color: var(--azulFuerte) !important;
        line-height: 1.4 !important;
        flex: 1 !important;
    }

    .faq-icon {
        flex-shrink: 0 !important;
        width: 2.2rem !important;
        height: 2.2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.3s ease !important;
    }

    .faq-icon svg {
        width: 2.8rem !important;
        height: 2.8rem !important;
        stroke: var(--azulFuerte) !important;
        fill: none !important;
        stroke-width: 2.5 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        transition: stroke 0.2s !important;
    }

    .faq-item.is-open .faq-trigger {
        background: #fff !important;
    }

    .faq-item.is-open .faq-icon {
        transform: rotate(180deg) !important;
    }

    .faq-item.is-open .faq-icon svg {
        stroke: var(--azulFuerte) !important;
    }

    .faq-panel {
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease !important;
    }

    .faq-item.is-open .faq-panel {
        max-height: 200px !important;
        opacity: 1 !important;
    }

    @media (max-width: 760px) {
        .faq-item.is-open .faq-panel {
            max-height: 250px !important;
            opacity: 1 !important;
        }
    }

    .faq-panel-inner {
        padding: 0 2.4rem 2rem 2.4rem !important;
        font-size: 1.5rem !important;
        color: #444 !important;
        line-height: 1.7 !important;
    }

    .faq-panel-inner p {
        margin: 0 !important;
        font-weight: normal !important;
    }

    .faq-panel-inner a {
        color: var(--azulFuerte) !important;
        text-decoration: underline !important;
    }

    .faq-panel-inner a:hover {
        opacity: 0.75 !important;
    }