/* QNA Section */
.qna {
    background: url('../../images/main/section_04_bg.jpg') center center / cover no-repeat;
}

.qna .container {
    gap: 40px;
}

.qna .section-nav {
    flex: 0 0 150px;
    width: 150px;
}

.qna-content {
    flex: 1;
    text-align: center;
}

.qna-subtitle {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Sumana', serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}

.qna-title {
    color: #FFF;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 40px;
}

.qna-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qna-card {
    background: rgba(255, 255, 255, 0.80);
    padding: 20px;
}

.qna-question {
    color: #062132;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.7px;
    margin-bottom: 15px;
}

.qna-divider {
    height: 1px;
    background: #E9E9E9;
    margin-bottom: 15px;
}

.qna-answer {
    color: #353535;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.7px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .qna-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
