.ps-accordion {
    background-color: #fff;
    color: #e78161;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    transition: 0.4s;
    margin-bottom: 2%;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.ps-accordion:after {
    content: '\002B';
    color: #e78161;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    margin-bottom: 2%;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.ps-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 2%;
    border-radius: 5px;
    color: #e78161;
    font-family: 'Poppins', sans-serif;
}

.activity-accordion {
    border-bottom: 1px solid #fff;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 7px;
    background-color: #b584a8;
}

.activity-accordion:after {
    content: '\002B';
    color: #ffffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    margin-bottom: 2%;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.activity-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 2%;
    color: #b584a8;
    font-family: 'Poppins', sans-serif;
}