
.priorities-container {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
}

.priorities-section {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: calc(100% - 40px);
    max-width: 800px;
}

.priorities-title-1 {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    background-color: #D90012;
    color: white;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.priorities-title-2 {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    background-color: #001489;
    color: white;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.priorities-title-3 {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    background-color: #FF9E1B;
    color: white;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 5px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.priorities-title.active .arrow {
    transform: rotate(135deg) translateY(-2px) translateX(-7px);
}

.priorities-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
}

.priorities-content-1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #e69299;
}

.priorities-content-2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #949ee0;
}

.priorities-content-3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #deb57e;
}

.priorities-list {
    padding: 0;
}


.priorities-list li {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.priorities-list li:last-child {
    border-bottom: 0px;
}
