.custom-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E1344; /* Dark blue */
    color: white;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    font-weight: bold;
    transition: border-radius 0.3s ease;
    height: 76px;
}

.custom-accordion .accordion-header .icon {
    width: 30px;
    height: 30px;
    background-color: white;
    color: #004080; /* Matches header background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-content {
    display: none;
    padding: 15px;
    border: 0px solid #ddd;
    background-color: white;
    color: black;
    border-radius: 0 0 10px 10px;
}

.custom-accordion .accordion-item.open .accordion-header {
    border-radius: 10px 10px 0 0;
}

.custom-accordion .accordion-item.open .accordion-content {
    display: block;
}

.custom-accordion .accordion-item.open .icon {
    transform: rotate(45deg);
}
