.cp_faq-accordion {
    padding: 3rem 0 2.5rem;
}

.cp_faq-section-title {
    margin: 0;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    text-align: left;
    padding-bottom: 1.3rem;
    color: #ffffff;
}

.cp_faq-accordion .cp_faq-item {                      
    border: 1px solid rgba(212, 175, 55, 0.35);
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 0;
    background: rgba(17, 17, 17, 0.6);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cp_faq-accordion .cp_faq-item.active {
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.cp_faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    gap: 20px;
    padding: 12px 0;
    color: #ffffff;
}

.cp_faq-question-text {
    flex: 1;
}

.cp_faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid #d4af37;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.35);
    color: #d4af37;
}

.cp_faq-toggle .qp-faq-sc__icon {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.cp_faq-item.active .cp_faq-toggle .qp-faq-sc__icon {
    transform: rotate(180deg);
}

.cp_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    margin-top: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 4px 0 0;
    color: #d9d0b8;
}

.cp_faq-item.active .cp_faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 22px;
}

.cp_faq-answer p {
    margin-bottom: 0.3rem;
    color: #d9d0b8;
}

.cp_faq-answer p:last-child {
    margin-bottom: 0;
}

.cp_faq-answer a {
    color: #d4af37;
    text-decoration: underline;
}

.cp_faq-answer a:hover {
    color: #e8c547;
}
