/* 고객센터 · 자주 하는 질문 스타일 */

.faq-section {
    padding: 100px 0 80px;
    background: #fff;
    scroll-margin-top: var(--header-height);
}
.faq-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 32px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f5f7fa;
    border-radius: 14px;
    padding: 24px 28px 26px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.25s ease, background 0.25s ease;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79, 140, 255, 0.1);
    border-color: rgba(79, 140, 255, 0.25);
    background: #f8fafc;
}

.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}
.faq-item:hover .faq-q-icon {
    transform: scale(1.12);
    background: var(--primary-darker);
}

.faq-q-text {
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--text-dark);
    line-height: 1.5;
    transition: color 0.2s ease;
}
.faq-item:hover .faq-q-text {
    color: var(--primary-darker);
}

.faq-a {
    padding-left: 46px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.2s ease;
}

.faq-a strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 반응형 */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0 60px;
    }
    .faq-title { font-size: 1.45rem; }
    .faq-item {
        padding: 20px 18px 22px;
    }
    .faq-q { gap: 12px; }
    .faq-q-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .faq-a {
        padding-left: 0;
        padding-top: 4px;
        font-size: 0.95rem;
    }
}
@media (max-width: 576px) {
    .faq-section { padding: 70px 0 50px; }
    .faq-title { font-size: 1.3rem; margin-bottom: 24px; }
    .faq-item { padding: 18px 16px 20px; }
}
