.accordion-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    align-items: stretch;
}
.accordion {
    width: 45%;
}

.accordion-section h2{
    text-align: center;
    margin-bottom: 20px;
}

.accordion-item {
   margin-bottom: 15px;
    overflow: hidden;
}
.accordion-header {
    color: black;
    background-color: rgb(196, 225, 255);
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}
.accordion-content {
    background-color: white;
    padding: 10px;
    display: none;
    border-left: 1px solid rgba(172, 194, 241, 0.575);
    border-right: 1px solid rgba(172, 194, 241, 0.575);
    border-bottom: 1px solid rgba(172, 194, 241, 0.575); 
    font-weight: 500;
}

.arrow-f {
    transition: transform 0.3s;
}
.active .arrow-f {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    color: blue;
}

.accordion-item.active .accordion-header i {
    color: blue !important;
}

@media (max-width: 768px) {
    .accordion-container {
        flex-direction: column;
        align-items: center;
    }
    .accordion {
        width: 90%;
    }
}

