.faq-container{
    max-width: 700px;
    margin: auto;
    margin-top: 25px;
}
.faq-item{
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-question{
    width: 100%;
    background: transparent !important;
    border: none;
    padding: 15px;
    text-align: left;
    color: #00f7ff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after{
    content:  "▸";
    transition: 0.3s;
}
.faq-item .faq-question::after{
    transform: rotate(90deg);
}
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 15px;
    color: #ddd;
}
.faq-item.active .faq-answer{
    max-height: 200px;
    padding: 0 15px 15px;
}