.accordion {
    width: 100%;
    font-family: inherit;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.accordion-header {
    width: 100%;
    background: #fff;
    color: #011B4C;
    font-family: "DM Sans", sans-serif;
    border: 0;
    border-left: 4px solid #c7a14b;
    border-radius: 0;
    padding: 22px 28px;
    font-size: 1.45rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .25s;
}

.accordion-header:hover {
    background: #fafafa;
    color: #011B4C;
}

.accordion-item.active .accordion-header {
    background: #fafafa;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 28px;
    background: #fff;
    color: #555;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    padding: 0 28px 24px;
}

.accordion-content p {
    margin: 18px 0;
}

.icon {
    width: 32px;
    height: 32px;
    border: 1px solid #c7a14b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c7a14b;
    font-size: 22px;
    font-weight: 300;
    transition: .25s;
}



button:hover {
    border: 0 !important;
}

.accordion-content strong {
    font-weight: 700 !important;
} 