.cp_faq-accordion {
    padding: 2rem 0;
}

.cp_faq-accordion .cp_faq-item {
    border: 1px solid #8793CB;
    margin-bottom: 18px;
    padding: 6px 6px 6px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cp_faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
}

.cp_faq-toggle {
    position: relative; 
    display: inline-block;
}
.cp_faq-toggle img {
    min-width: 44px;
}

.toggle-symbol {
    position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: bold;
      font-size: 17px;
      color: white;
      pointer-events: none;
}

.cp_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
    font-size: 14px;
}

.cp_faq-item.active .cp_faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.cp_faq-answer p {
    margin-bottom: 0.3rem;
}
