/* FAQ 전체 영역 */
.faq-wrap {
    width: 100%;
    margin: 0 auto;
}

/* FAQ 아이템(항목) 전체 */
.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: visible;
    background: #e6f4ff; /* 하늘색 파스텔톤 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FAQ 질문 */
.faq-title {
    width: 100%;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    background: #cfe9ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 플러스/마이너스 아이콘 */
.faq-icon {
    margin-left: auto;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s ease;
}

/* FAQ 답변 영역 */
.faq-content {
    display: none;
    padding: 15px;
    background: #f9fcff;
    border-top: 1px solid #d2eaff;
    line-height: 1.5;
}

/* 마우스 오버 애니메이션 */
.faq-title:hover {
    background: #bfe2ff;
}