.faq {
    width: 100%;
    margin: 0 auto;
}
.faq__item {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.faq__item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.faq__item-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.faq__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-right: 20px;
}
.faq__item-arrow-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.faq__item.active .faq__item-arrow-wrap {
    transform: rotate(180deg);
}
.faq__item-arrow-icon {
    width: 16px;
    height: 16px;
    stroke: #222;
    stroke-width: 2.5;
    fill: none;
}
.faq__item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.active .faq__item-answer {
    max-height: 1000px;
}
.faq__item-answer-wrapper {
    padding: 0 32px 32px 32px;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {
    .faq__item-question {
        padding: 20px;
    }
    .faq__item-title {
        font-size: 1.1rem;
    }
    .faq__item-answer-wrapper {
        padding: 0 20px 20px 20px;
    }
}
