/* 이전 섹션들과 동일하게 맞춘 일관된 여백 및 최대 너비 */


.faq-section {
    width: 100%;
    max-width: 100% !important; /* 가로로 길게 브라우저 전체 확장 */
    background-color: #111f39;
    padding: 80px 20px;
}

/* 내부 컨텐츠는 기존과 동일하게 최대 1300px 중앙 정렬 유지 */
.faq-container {
    max-width: 1300px;
    margin: 0 auto;
}

        .faq-section {
            background-color: #111f39;
            width: 100%;
            padding: 80px 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* 전체 레이아웃 (좌우 2단 배치) */
        .faq-container {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        /* 좌측 고객센터 안내 영역 */
        .faq-left .badge {
            font-size: 13px;
            font-weight: 500;
            color: #8da4ef;
            margin-bottom: 8px;
            display: block;
        }
        .faq-left h2 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .faq-left .desc {
            font-size: 15px;
            color: #a0aec0;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* 고급스러운 고객센터 연락처 아이템 리스트 */
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .contact-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8da4ef;
            flex-shrink: 0;
        }
        .contact-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .contact-info .label {
            font-size: 13px;
            color: #94a3b8;
            display: block;
            margin-bottom: 2px;
        }
        .contact-info .value {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        /* 우측 FAQ 카드 영역 */
        .faq-right-card {
            background-color: #ffffff;
            color: #111;
            border-radius: 16px;
            padding: 36px 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        .faq-right-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            margin-bottom: 24px;
            padding-bottom: 14px;
            border-bottom: 2px solid #f1f5f9;
        }

        /* FAQ 아코디언 리스트 */
        .accordion-list {
            display: flex;
            flex-direction: column;
        }
        .accordion-item {
            border-bottom: 1px solid #f1f5f9;
        }
        .accordion-header {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            cursor: pointer;
            text-align: left;
            transition: color 0.2s;
        }
        .accordion-header:hover {
            color: #2563eb;
        }
        .accordion-header .question-text {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* 세련된 회전형 플러스 아이콘 */
        .accordion-header .arrow {
            width: 24px;
            height: 24px;
            background-color: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            color: #64748b;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .accordion-item.active .accordion-header .arrow {
            transform: rotate(45deg);
            background-color: #2563eb;
            color: #ffffff;
        }

        /* 답변 영역 (아코디언 토글 애니메이션) */
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            background-color: #f8fafc;
            border-radius: 8px;
        }
        .accordion-body-content {
            padding: 18px 20px;
            font-size: 14px;
            color: #475569;
            line-height: 1.6;
        }
        .accordion-item.active .accordion-body {
            max-height: 200px;
            margin-bottom: 14px;
        }

        /* 반응형 디자인 (모바일 및 태블릿 최적화) */
        @media (max-width: 1024px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .faq-section {
                padding: 40px 16px;
            }
            .faq-left h2 {
                font-size: 26px;
            }
            .faq-right-card {
                padding: 24px 18px;
            }
        }