/* FAQ 섹션 스타일 */
.kt-faq-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    left: 50%;
    margin-left: -50vw;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.kt-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    z-index: 1;
}

.kt-faq-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* 타이틀 영역 */
.kt-faq-title-area {
    margin-bottom: 60px;
    text-align: center;
}

.kt-faq-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    text-shadow: none;
    line-height: 1.3;
}

/* FAQ 아코디언 */
.kt-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kt-faq-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.kt-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.kt-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.kt-faq-question:hover {
    background: #f8f9fa;
}

.kt-faq-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.kt-faq-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.kt-faq-item.active .kt-faq-icon {
    transform: rotate(45deg);
}

.kt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.kt-faq-item.active .kt-faq-answer {
    max-height: 200px;
}

.kt-faq-answer p {
    padding: 25px 30px;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #495057;
}

.kt-faq-answer p:last-child {
    margin-bottom: 0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .kt-faq-section {
        padding: 60px 15px;
    }
    
    .kt-faq-main-title {
        font-size: 2.5rem;
    }
    
    .kt-faq-question {
        padding: 20px 25px;
    }
    
    .kt-faq-question h3 {
        font-size: 1.2rem;
        padding-right: 15px;
    }
    
    .kt-faq-icon {
        font-size: 1.5rem;
    }
    
    .kt-faq-answer p {
        padding: 20px 25px;
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 0 8px 0;
    }
    
    .kt-faq-answer p:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .kt-faq-section {
        padding: 50px 10px;
    }
    
    .kt-faq-main-title {
        font-size: 2rem;
    }
    
    .kt-faq-question {
        padding: 18px 20px;
    }
    
    .kt-faq-question h3 {
        font-size: 1.1rem;
        padding-right: 12px;
    }
    
    .kt-faq-icon {
        font-size: 1.3rem;
    }
    
    .kt-faq-answer p {
        padding: 18px 20px;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0 0 6px 0;
    }
    
    .kt-faq-answer p:last-child {
        margin-bottom: 0;
    }
}
