
 
.accordion {
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.accordion h1{
    text-align: center;
}
.accordion button{
    border: none;
    background-color: transparent;
    margin-bottom: 10px;
    margin-top: 10px;
    font-style: italic;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}
.accordion-header {
    background: white;
    color: #892039;
    padding: 15px;
    cursor: pointer;   
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header img {
    width: 30px;
    height: 30px;
}
.active .accordion-header {
    background: #892039;
    color: white;
}
.accordion-content {
    display: none;
    padding: 15px;
    background: #f8f8f8;
}
.active .accordion-content {
    display: block;
}








