.cust-service-container   {
    max-width:960px;
    margin:0 auto;
    padding:40px 16px;
}
.cs-title    {font-size:20px; font-weight:700; margin-bottom:32px;}

/* ---------- 탭 ---------- */
.cs-tabs            {display:flex; gap:32px; border-bottom:2px solid #f0f1f4; margin-bottom:32px;}
.cs-tab             {padding:8px 0 14px; cursor:pointer; font-size:17px; font-weight:600; color:#666; border:0; background:none;}
.cs-tab.active      {color:#222; border-bottom:3px solid #3366ff;}

/* ---------- 탭 패널 ---------- */
.cs-panel   {display:none;}
.cs-panel.active {display:block;}

/* ---------- 공지사항 리스트 ---------- */
.notice-list       {border-top:1px solid #ddd; font-size:15px;}
.notice-item       {border-bottom:1px solid #eee;}
.notice-header     {font-size: 15px; display:flex; align-items:center; gap:12px; padding:14px 12px; cursor:pointer;}
.notice-header:hover {background:#f7f9fc;}
.notice-label      {color:#3366ff; font-weight:700;}
.notice-title      {flex:1; font-weight:500;}
.notice-date       {font-size:14px; color:#999; white-space:nowrap;}
.notice-content {
    display: none;
    max-height: 45vh;          /* ⬆︎ 화면 절반까지만(모바일용)               */
    overflow-y: auto;          /* 세로 스크롤                                 */
    overflow-x: hidden;        /* 가로 오버플로 차단                          */
    word-break: break-word;    /* 긴 단어도 줄바꿈                            */
    padding: 16px;
    background: #fafafa;
    color: #444;
    line-height: 1.6;
    font-size: 15px;

    /* 예쁜 스크롤 숨김 (선택) */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.notice-content::-webkit-scrollbar {
    width: 6px;
}
.notice-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
}

/* ---------- FAQ 예시 ---------- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.faq-answer {
    display: none;
    padding: 8px 24px 16px 24px;
    color: #333;
    font-size: 15px;
    line-height: 2.3;
    background-color: #fafafa;
}

/* ---------- 1:1 문의 예시 ---------- */
.inquiry-form {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Pretendard', sans-serif;
    padding: 32px 0;
}

.form-section {
    margin-bottom: 20px;
}

.form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
    font-size: 17px;
}

/* 라디오 그룹 */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 숨긴 실제 라디오 */
.radio-item input[type="radio"] {
    display: none;
}

/* 라벨을 버튼처럼 */
.radio-item span {
    display: inline-block;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}

/* 선택된 상태 */
.radio-item input[type="radio"]:checked + span {
    background: #3366ff;
    border-color: #3366ff;
    color: #fff;
}


/* 공통 입력 필드 */
.input-field {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    box-sizing: border-box;
}

/* 텍스트영역 전용 */
.textarea-field {
    height: 160px;
    resize: vertical;
}

.form-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-button button {
    width: 100%;
    padding: 16px 40px;       /* 높이, 너비 */
    font-size: 15px;
    font-weight: 600;         /* 글자 두께 */
    border-radius: 8px;       /* 모서리 둥글게 */
    background-color: #3366ff; /* 색상은 예시 */
    color: white;
    border: none;
    cursor: pointer;
}



@media screen and (max-width: 1032px) {
    .cs-tabs {
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    .cs-tab {
        flex: 1;
    }
}
