.faq-container-inner {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    font-family: 'Pretendard', sans-serif;
}

.faq-main-title {
    margin-top: 11px;
    font-size: 34px;
    line-height: 1.5;
    font-family: NotoSerif;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    margin-bottom: 60px;
}

.faq-wrapper {
    display: flex;
    gap: 50px;
}

.faq-column {
    flex: 1;
}

.faq-column .faq-item:first-child {
    border-top: 1px solid #dbdbdb;
}

.faq-item {
    border-bottom: 1px solid #dbdbdb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 25px 25px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #3a5554;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question .icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-question .icon::before,
.faq-question .icon::after {
    content: '';
    position: absolute;
    background-color: #3a5554;
    transition: all 0.3s;
}

.faq-question .icon::before {
    width: 14px;
    height: 2px;
    top: 8px;
    left: 2px;
}

.faq-question .icon::after {
    width: 2px;
    height: 14px;
    top: 2px;
    left: 8px;
}

.faq-item.active .faq-question .icon::before {
    background-color: #b8b8b8;
}

.faq-item.active .faq-question .icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    font-weight:400;
    color: #4a4a4a;
    background: #fbfbfb;
}

.faq-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-faq-more {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-faq-more:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 0;
    }
}