.openai-faq{
   color: #000;
   margin-bottom: 20px;
}
.openai-faq-list {
    
}
.openai-faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 18px 15px;
    margin-bottom: 17px;
    transition: all 0.2s ease-out;
}
.openai-faq-item.active {
   
}
.openai-faq-item-q {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
}
.openai-faq-item-q__h {
    font-size: 28px;
    font-weight: 800;
    padding-right: 15px;
} 
.openai-faq-item-q__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background: #555;
    border: 1px solid #333;

    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.openai-faq-item-q__arrow::before, .openai-faq-item-q__arrow::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


.openai-faq-list .openai-faq-item-q__arrow::before {
    width: 24px;
    height: 2px;
}
.openai-faq-list .openai-faq-item-q__arrow::after {
    width: 2px;
    height: 24px;
}

.openai-faq-item.active .openai-faq-item-q__arrow {
    transform: translateY(-50%) rotate(45deg);
}
.openai-faq-item-a {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #000;
    font-size: 24px;
}
.openai-faq-item.active .openai-faq-item-a {
    display: block;
}