.stc-need-help {
    background-color: var(--color-secondary-pale);
    padding: 20px 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.stc-need-help a {
    color: var(--color-primary);
}

.stc-need-help a:hover,
.stc-need-help a:active,
.stc-need-help a:focus {
    font-weight: 600;
}

@media screen and (max-width:480px) {
    .stc-need-help {
        padding: 15px 10px;
    }
}

.stc-faq {
    font-size: 16px;
}

.stc-faq__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid var(--color-secondary);
    background: transparent;
    font-family: var(--text-font);
    font-weight: 400;
    color: var(--color-primary);
    font-size: 16px;
    text-transform: unset;

}

.stc-faq__header:hover,
.stc-faq__header:active,
.stc-faq__header:focus {
    color: var(--color-secondary);
    outline: none;
}

.stc-faq__header  .stc-faq__icon {
    color: inherit;
    font-size: 18px;
    padding: 2.5px;
    margin-right: 15px;
}

.stc-faq__title {
    color: inherit;
    text-align: left;
    display: inline-flex;
    cursor: pointer;
}

details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0%    {opacity: 0; margin-left: -10px}
  100%  {opacity: 1; margin-left: 0px}
}

.stc-faq p{
    padding: 10px;
    margin-bottom: 0;
    color: black;
}

.stc-faq ul,
.stc-faq ol{
    padding-left: 3rem;
    color: black;
}

.stc-faq__content {
    padding: 10px;
    display: none;
    margin-bottom: 0;
}

.stc-faq__content p,
.stc-faq__content ul,
.stc-faq__content ol{
    margin-bottom: 0;
}

/* .stc-faq__header:hover .stc-faq__icon ,
.stc-faq__header:active .stc-faq__icon ,
.stc-faq__header:focus .stc-faq__icon {
    color: var(--color-secondary);
} */

.stc-faq__content:focus {
    outline: none;
}