.arrow {
        transition: transform 0.2s ease-in-out;
    }

    .video-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 56.25%;
        /* 16:9 Aspect Ratio */
    }

    .responsive-iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .accordion {
        background-color: #163963;
        color: #ffffff;
        cursor: pointer;
        padding: 18px;
        width: fit-content;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        font-family: Roboto, Helvetica Neue, Arial, Verdana, sans-serif;
        transition: all 0.2s ease-in-out;
        border-radius: .25rem !important;
    }

    .accordion-btn {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right center;
        background-size: 20px;
        transition: all 0.2s ease-out;
    }

    .accordion:hover,
    .accordion.active {
        background-color: #005BA5;
        transition: all 0.2s ease-out;
    }

    .panel {
        padding: 0 18px;
        display: none;
        background-color: white;
        overflow: hidden;
        transition: all 0.2s ease-out;
    }

    .accordion.active .arrow {
        transform: rotate(180deg);
        transition: all 0.2s ease-out;
    }

    /* Ensure each list-group-item takes 50% of the width */
    .carousel .list-group-item {
        width: 30%;
        box-sizing: border-box;
    }

    /* Ensure all list-group-items have equal height */
    .carousel .carousel-inner {
        flex-wrap: wrap;
    }

    .carousel .list-group-item {
        flex-direction: column;
        justify-content: space-between;
        flex: 1 1 50%;
        height: 80%;
        background-color: #163963;
        position: relative;
        display: inline-flex;
        padding: .75rem 1.25rem;
        border: 1px solid rgba(0, 0, 0, .125);
        box-sizing: border-box;
        margin-bottom: 15px;
        /* Adds space between rows */
        border-radius: 10px;
        /* Makes the corners curved */
        box-shadow: 4px 8px #9ec0dda8;
        /* Adds a drop shadow */
        margin: 5px;
    }

    /* Ensure the list-group-item hover and focus styles remain intact */
    .list-group-item-action:focus,
    .list-group-item-action:hover {
        z-index: 1;
        color: #495057;
        text-decoration: none;
        background-color: #005BA5;
        box-shadow: 0 4px 8px #9ec0dda8;
    }

    /* Make sure the carousel items are responsive */
    @media (max-width: 992px) {
        .carousel .list-group-item {
            width: 100%;
            /* Full width on smaller screens */
        }
    }
    @media (min-width: 992px) {
    .carousel:before {
        background: none !important;
    }
    
    @media (min-width: 992px) {
    .carousel {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
        padding-bottom: 6.25rem;
    }
}

    .d-flex.justify-content-end.mt-auto {
        margin-top: auto;
        /* Ensures the button is at the bottom */
        justify-content: flex-end;
        /* Aligns the button to the right */
    }

    .carousel-title {
        text-align: center;
        width: 100%;
        /* Ensures the text spans the full width of the container */
        margin: 0 auto;
        /* Centers the text horizontally */
    }
    .carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #163963;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.btn-accent {
    background-color: #005BA5;
    border-color: #005Ba5;
}
}