li::marker{
    color: #FFCF40;
}

.heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .heading {
        font-size: 2.5rem;
    }
}

.faq-item {
    border: 1px solid #292929;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.faq-question span{
    width: 90%;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: #FFCF40;
    background-color: #111111;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.2s;
}

@media (min-width: 640px) {
    .faq-question {
        font-size: 1.25rem;
    }
}

.faq-question:hover {
    background-color: #161616;
}

.faq-question:focus {
    box-shadow: 0 0 0 3px #FFCF40;
}

.faq-question svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: transform 0.3s ease-in-out;
}
@media (max-width: 640px) {
    .faq-question svg {
        width:24px;
        height: 24px;
    }
    li{
        margin-left: 20px;
    }
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    padding-top: 0;
    background-color: #111111;
    color: #dedede;
    line-height: 1.625;
}