/* ==========================================================================
   FAQ Page Section (자주 묻는 질문 페이지)
   ========================================================================== */
.faq-page-section {
    padding: 200px 0;
    background-color: var(--color-white);
}

.faq-page-title {
    font-family: var(--font-point);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 130px;
    letter-spacing: -0.02em;
}

.faq-page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 70px;
}

.faq-tab-btn {
    padding: 10px 28px;
    border-radius: 40px;
    border: none;
    background-color: #f1f3f5;
    color: var(--color-text-main);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab-btn.active {
    background-color: #222;
    color: var(--color-white);
}

/* 하단 배너 */
.faq-contact-banner {
    margin-top: 200px;
    background-color: #EFF6F3; /* 연한 민트/녹색 계열 */
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.faq-contact-methods {
    display: flex;
    gap: 60px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 15px;
    color: #666666;
    font-weight: 500;
}

.contact-value, .contact-link {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
}

.contact-link::after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
    margin-left: 8px;
}

.faq-contact-img {
    width: 126px;
    margin-right: 50px;
}

.faq-contact-img img {
    max-width: 100%;
}