.accordion-wrapper {
    max-width: 100%;
    margin: auto;
    padding: 2rem 0 4rem;
}
.accordion-toggle {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    display:flex;
    align-items: center;
    justify-content: space-between;
    color:#000;
}
.accordion-toggle:hover {
    background: #eaeaea;
}
.accordion-content {
    display: none;
    padding: 1rem;
    border: 1px solid #ddd;
    border-top: none;
    background: #fff;
}
.accordion-card.active .accordion-content {
    display: block;
}
.accordion-wrapper p{
    color: #333;
    font-size: 16px;
}
.accordion-toggle .icon-drop:after {
    font-family: 'Material Icons';
    padding: 0 10px;
    content: '\e313';
    font-weight: 400;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}
.active .accordion-toggle .icon-drop:after {
    font-family: 'Material Icons';
    content: '\e316';
    color: #fff;
}
.active .accordion-toggle{
    background-color: #3e4f3d;
    color: #fff;
}
.active .accordion-toggle:hover{
    background-color: #5c755b;
    color: #fff;
}
@media (max-width: 600px) {
    .accordion-toggle {
        font-size: 16px;
    }
}