/* sub.php CSS 파일 */
body {
  font-family: 'Pretendard', sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  background-color: #ffffff;
  overflow-x: hidden;
}
/* Pretendard Font */
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/pretendard/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}
/* 서브페이지에 삽입될 수 있는 html 태그들 기본 스타일 설정 */
.sub-body h1,
.sub-body h2,
.sub-body p,
.sub-body ul,
.sub-body ol {
  line-height: 1.4;
}

.sub-body h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.sub-body h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.sub-body h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.sub-body p {
  font-size: 18px;
  margin: 20px 0;
}

.sub-body ul,
.sub-body ol {
  margin: 20px 0;
  font-size: 18px;
}

.sub-body ul li,
.sub-body ol li {
  list-style-type: disc;
  list-style-position: inside;
}

.sub-body table {
  margin: 30px 0;
}

.sub-body th,
.sub-body td {
  border: 1px solid #aaa;
  padding: 10px 15px;
}

.sub-body th {
  background-color: #edf2f9;
}

.sub-body tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* 서브페이지에서 form-modal을 사용하기 위해 include한 form.php 숨김처리 */
.sub-page .form {
  /* display: none; */
}

.sub-page section {
  /* padding: 50px 0; */
}
.qna-page-main-banner{
  padding: 120px 0px 80px 0px;
}
.sub-section-header {
  margin-bottom: 30px;
}

.sub-section-header__subtitle {
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}

.sub-section-header__title {
  font-size: 36px !important;
  font-weight: 600;
}

.highlight {
  color: #1c86ff;
}



/* Custom styles to supplement Tailwind CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');

:root {
  --primary: #2563eb;
  --primary-light: #eff6ff;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --bg-main: #ffffff;
  --bg-sub: #f8f9fa;
  --border-color: #e5e7eb;
  --bg-gray: #f8f9fa;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-family: 'Pretendard', 'Inter', sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  min-height: 100vh;
}

/* Layout */
.container-custom {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}


/* ==============================
Section : 서브1
============================== */


/* Header */


/* Hero Section  공통*/
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 272px 0px 192px 0;
  background: url(../img/sub/sub_1_main.png)no-repeat bottom / cover;
}
.hero-section .hero-dim {
  position: absolute;;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-section .inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  align-content: center;
  flex-direction: column;
}

.sub1-page1 .hero-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #fff;
}

.sub1-page1 .hero-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
}
.icon-home {
  width: 13px;
  height: 15px;
}
.separator {
  width: 16px;
  height: 16px;
}
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 20px 0;
}

.icon-home {
  width: 1rem;
  height: 1rem;
}

.separator {
  color: #d1d5db;
}

.current-page {
  color: var(--text-dark);
  font-weight: 500;
}




/***********************************************
 * sub1 시작
 ***********************************************/
/* Layout & Grid */
.sub1-page1 .section-grid {
  display: grid;

}
.sub1-page1 .content-section .section-grid{
  gap: 117px;
}
.sub1-page1 .content-section{
  padding: 100px 0;
}
@media (min-width: 1024px) {
  .sub1-page1 .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}
.sub1-page1 .section3 .section-header-center{
  text-align: center;
}
/* Typography Elements */
.sub1-page1 .section-label {
  font-size: 16px;
  font-weight: 600;
  color: #1c86ff;
  margin-bottom: 4px;
  width: 100%;
}

.sub1-page1 .section-label.white {
  color: #60a5fa;
}

.sub1-page1 .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 20px;
}
.sub1-page1 .section-title1{
  color: #171717;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sub1-page1 .section-desc{
  font-weight: 400;
  color: #3a3a3a;
  font-size: 18px;
  margin-bottom: 40px;
}
.sub1-page1 .section3 .section-title {
  margin-bottom: 20px;
}
.sub1-page1 .section-desc {
  font-size: 18px;
  color: #3a3a3a;
}




.sub1-page1 .section-desc.align-right {
  margin-bottom: 40px;
}




/* Image Wrapper */
.sub1-page1 .image-wrapper {
  position: relative;
  width: 491px;
  height: 320px;
  border-radius: 20px;
}
.sub1-page1 .image-wrapper img{
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .sub1-page1 .image-wrapper {
    height: 400px;
    width: 100%;
  }
}

.sub1-page1 .content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keypoint Section */
.sub1-page1 .keypoint-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.sub1-page1 .keypoint-bg-wrapper {
  position: absolute;
  inset: 0;
}

.sub1-page1 .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub1-page1 .keypoint-content {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.sub1-page1 .keypoint-content .section-title {
  color: #fff;
}

.sub1-page1 .keypoint-content .section-desc {
  font-size: 18px;
  color: #B9DAFF;
  line-height: 1.3;
}




/* List Items */
.sub1-page1 .content-grid {
  width: 100%;
  display: flex;
  gap: 16px;
}


.sub1-page1 .section-header{
  display: flex;
  align-items: center;
  gap: 29px;
  margin-bottom: 40px;
}

.sub1-page1 .section-header .section-desc.align-right{
  margin-bottom: 0;
}

.sub1-page1 .image-box { 
  position: relative;
  height: 400px;
  width: 389px;
  border-radius: 2rem;
  background-color: #fff;
  border-radius: 20px;
}
.sub1-page1 .image-box img{
  border-radius: 20px;
}

.sub1-page1 .list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 389px);
}

.sub1-page1 .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background-color: #fafafa;
  padding: 26px 0px 26px 26px;
  transition: all 0.3s ease;
}

.sub1-page1 .list-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.sub1-page1 .icon-box {
  display: flex;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background: url(../img/sub/sub_1_con3_icon.png)no-repeat bottom / cover;
}

.sub1-page1 .item-text {
  font-size: 20px;
  font-weight: 500;
  color: #3a3a3a;
}

/* Card Grid */
.sub1-page1 .card-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sub1-page1 .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sub1-page1 .card-item {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sub1-page1 .card-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.sub1-page1 .card-thumb {
  position: relative;
  height: 200px;
  width: 100%;
  background-color: #f3f4f6;
  overflow: hidden;
}

.sub1-page1 .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sub1-page1 .card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sub1-page1 .card-item:hover .card-img {
  transform: scale(1.05);
}

.sub1-page1 .card-body {
  padding: 30px 30px 98px 30px;
}

.sub1-page1 .card-title {
  font-size: 24px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 16px;
}

.sub1-page1 .card-text {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.4;
}

/* Detail List */
.sub1-page1 .detail-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sub1-page1 .detail-item {
  display: grid;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.sub1-page1 .detail-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.sub1-page1 .detail-item {
  grid-template-columns: 1fr 389px;
  align-items: center;
  height: 100%;
}
@media (min-width: 1024px) {
  .sub1-page1 .detail-item {
    grid-template-columns: 1fr 389px;
    align-items: center;
  }
}

.sub1-page1 .detail-content {
  padding: 40px;
  background-color: #FAFAFA;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.sub1-page1 .detail-title {
  font-size: 24px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 16px;
}

.sub1-page1 .detail-desc-group {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: #3a3a3a;
  line-height: 1.4;
}

.sub1-page1 .detail-image {
  position: relative;
  height: 280px;
  width: 100%;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  order: 1;
}
.sub1-page1 .icon-check{
  background-image: url;
}
@media (min-width: 1024px) {
  .sub1-page1 .detail-image {
    height: 100%;
    order: 2;
  }
}
/* ==============================
Section : sub1 끝
============================== */


/* ==============================
Section : sub2
============================== */
/* ==============================
Section : sub2 시작
============================== */
.sub2-page2 .hero-title,
.sub2-page2 .hero-desc{
  color: #fff;
}


.sub2-page2 .hero-title{
  font-size: 40px;
  font-weight: 700;
}
.sub2-page2 .hero-desc{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}
/* 섹션 공통 패딩 */
.sub2-page2 .section-01,
.sub2-page2 .section-02,
.sub2-page2 .section-03 {
  padding: 100px 0;
}

/* section-02 배경 */


/* Hero */
.sub2-page2 .hero {
  background: url(../img/sub/sub_2_main.png)no-repeat bottom / cover;
   padding: 272px 0px 192px 0;
}
.sub2-page2 .hero .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub2-page2 .hero-con {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
/* Breadcrumb */
.sub2-page2 .breadcrumb {
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
}

.sub2-page2 .breadcrumb .inner {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--text-light);
}

.sub2-page2 .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sub2-page2 .breadcrumb-current {
  color: var(--text-main);
  font-weight: 500;
}
/* Content Shared */
.sub2-page2 .section-header {
  display: flex;
  align-items: center;
  gap: 54px;
  margin-bottom: 40px;
}
.sub2-page2 .label-text {
  color: #1C86FF;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}

.sub2-page2 .title-text {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sub2-page2 .section-summary {
  color: #171717;
  font-size: 16px;
  line-height: 1.4;
}

/* Content 01 Items */
.sub2-page2 .content-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub2-page2 .content-item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .sub2-page2 .content-item {
    flex-direction: row;
  }
}

.sub2-page2 .item-thumb {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  width: 288px;
  height: 150px;
  border-radius: 20px;
}

.sub2-page2 .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub2-page2 .inner-box{
  display: flex;
}
.sub2-page2 .item-body {
  flex: 1;
}

.sub2-page2 .item-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sub2-page2 .item-desc {
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

/* Content 02 - Grid/Cards */
.sub2-page2 .text-center {
  text-align: center;
}

.sub2-page2 .card-scroll-wrapper {
  overflow-x: auto;
  margin: 0 -1.5rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
}

.sub2-page2 .card-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .sub2-page2 .card-scroll-wrapper {
    margin: 0;
    padding: 0 0 2rem;
  }
}


.sub2-page2 .card {
  flex-shrink: 0;
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 360px;
}

.sub2-page2 .card-label {
  color: #1c86ff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}

.sub2-page2 .card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.sub2-page2 .card-desc {
  color: #3a3a3a;
  font-size: 14px;
  line-height: 1.6;
}

.sub2-page2 .card-icon-box {
  margin-top: auto;
  align-self: flex-end;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Content 03 - Split Layout */
.sub2-page2 .split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}


.sub2-page2 .text-content {
  display: flex;
  flex-direction: column;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.6;
}
.sub2-page2 .section-03 .inner{
  display: flex;
  flex-direction: row;
  gap: 53px;
}
.sub2-page2 .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 500px;
}

.sub2-page2 .grid-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 288px;
  height: 500px;
}

.sub2-page2 .grid-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   border-radius: 20px;
}
.sub2-page2 .section-03{
  padding: 100px 0px 192px 0;
}
/* Swiper 슬라이드 자체에 너비 부여 */
    .sec02-swiper .swiper-slide {
        width: 288px; /* 여기서 원하는 너비값(px, %, rem 등)을 조절하세요 */
        height: 360px;
        margin-right: 16px;
    }

    /* 모바일에서 너무 커 보인다면 미디어 쿼리로 조절 */
    @media (max-width: 640px) {
        .sec02-swiper .swiper-slide {
            width: 280px; 
        }
        .sub2-page2 .inner1{
  padding: 20px;
}
    }
/* ==============================
Section  sub2 끝
============================== */


/* ==============================
Section  sub3
============================== */
.sub3-page3 .hero{
  padding: 272px 0px 192px 0;
  background: url(../img/sub/sub_3_main.png)no-repeat bottom / cover;
}
.sub1-page1 .section4 .section-header{
  display: block;

}

.sub3-page3 .hero-title,
.sub3-page3 .hero-desc
{
  color: #fff;
}
.sub3-page3 .hero-desc {
  font-weight: 400;
  font-size: 20px;
}
.sub3-page3 .hero-title{
  font-size: 40px;
  margin-bottom: 20px;
}
.sub3-page3 .hero-content{
  text-align: center;
}
.sub3-page3 .logo-icon {
    position: relative;
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.sub3-page3 .circle-black {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #000;
}

.sub3-page3 .circle-blue {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #1c86ff;
}

.sub3-page3 .logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.sub3-page3 .logo-brand {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.sub3-page3 .logo-o {
    color: #1c86ff;
}

.sub3-page3 .logo-sub {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.sub3-page3 .nav {
    display: flex;
    gap: 3rem;
}

.sub3-page3 .nav-link {
    font-size: 15px;
    font-weight: 500;
}

.sub3-page3 .nav-link:hover {
    color: #1c86ff;
}

.sub3-page3 .nav-link.active {
    color: #1c86ff;
    font-weight: 700;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: -30px;
    border-bottom: 3px solid #1c86ff;
}

/* Breadcrumb */
.sub3-page3 .breadcrumb-bar {
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.sub3-page3 .breadcrumb {
    height: 54px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.sub3-page3 .breadcrumb-item {
    display: flex;
    align-items: center;
}

.sub3-page3 .breadcrumb-sep {
    margin: 0 10px;
    color: #d1d5db;
    font-size: 11px;
}

.sub3-page3 .breadcrumb-current {
    color: var(--text-main);
    font-weight: 500;
}

/* Content Section */
.sub3-page3 .section-01,
.sub3-page3 .section-03 {
    padding: 100px 0;
    background-color: #fff;
}

.sub3-page3 .section-02 {
    padding: 100px 0;
    background-color: #fff;
}

.sub3-page3 .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 117px;
}

.sub3-page3 .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.sub3-page3 .content-text-side {
    flex: 1;
}

.sub3-page3 .content-label {
    color: #1C86FF;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sub3-page3 .content-title {
    font-size: 40px;
    color: #171717;
    font-weight: 600;
    margin-bottom: 20px;

}
.sub3-page3 .content-body {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.4;
}

.sub3-page3 .content-body p {
    font-size: 18px;
}

.sub3-page3 .image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    width: 491px;
    height: 320px;
    border-radius: 20px;
}

.sub3-page3 .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Section */
.sub3-page3 .section-04 {
    padding: 100px 0;
    background-color: #FAFBFD;
}

.sub3-page3 .card-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub3-page3 .banner-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.sub3-page3 .banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub3-page3 .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sub3-page3 .card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s, shadow 0.3s;
}

.sub3-page3 .card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sub3-page3 .card-label {
    color: #1c86ff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.sub3-page3 .card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sub3-page3 .card-desc {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.4;
}

/* ==============================
Section  sub3 끝
============================== */

/* ==============================
Section : sub4
============================== */

/* sub4 CSS Variables */

/* sub4 Utility classes (scoped) */

.sub4-page4 .hero{
  padding: 272px 0px 192px 0;
  background: url(../img/sub/sub_4_main.png)no-repeat bottom / cover;
}
.sub4-page4 .hero-title,
.sub4-page4 .hero-desc
{
  color: #fff;
}
.sub4-page4 .hero-desc {
  font-weight: 400;
  font-size: 20px;
}
.sub4-page4 .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 117px;
  align-items: center;
}

.sub4-page4 .grid-3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  height: 100%;

}

.sub4-page4 .flex-between {
  display: flex;
  gap: 29px;
  align-items: flex-end;
}

.sub4-page4 .text-center {
  text-align: center;
}

.sub4-page4 .text-muted {
  color: var(--sub4-text-muted);
}

.sub4-page4 .text-primary {
  color: var(--sub4-primary);
}

.sub4-page4 .bg-light {
  background-color: var(--sub4-bg-light);
}

.sub4-page4 .bg-white {
  background-color: var(--sub4-white);
}

.sub4-page4 .bg-accent {
  background-color: #eff6ff;
}

.sub4-page4 .rounded {
  border-radius: 1.5rem;
}

.sub4-page4 .shadow {
  box-shadow: var(--sub4-shadow-lg);
}

.sub4-page4 .shadow-sm {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.sub4-page4 .mb-0 {
  margin-bottom: 0 !important;
}

.sub4-page4 .mb-md {
  margin-bottom: 1.5rem;
}

.sub4-page4 .mb-lg {
  margin-bottom: 40px;
}

.sub4-page4 .mb-xl {
  margin-bottom: 80px;
}



.sub4-page4 .mx-auto {
  margin-left: auto;
  margin-right: auto;
}


.sub4-page4 .span-2 {
  grid-column: auto;
}

.sub4-page4 .gap-md {
  gap: 1.5rem;
}

/* Hero */
.sub4-page4 .hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sub4-page4 .hero-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.sub4-page4 .hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub4-page4 .hero .inner {
  position: relative;
  z-index: 10;
}

.sub4-page4 .hero-content {
  text-align: center;
  color: var(--sub4-white);
  padding: 0 1rem;
}

.sub4-page4 .hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.sub4-page4 .hero-desc {
  font-size: 20px;
  line-height: 1.4;

}

/* Breadcrumb */
.sub4-page4 .breadcrumb-bar {
  border-bottom: 1px solid var(--sub4-border-light);
  background: var(--sub4-white);
}

.sub4-page4 .breadcrumb-bar .inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.8125rem;
  color: var(--sub4-text-muted);
}

.sub4-page4 .breadcrumb-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.sub4-page4 .breadcrumb-sep {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.5;
}

.sub4-page4 .breadcrumb-current {
  color: var(--sub4-text-dark);
  font-weight: 500;
}

/* Sections General */
.sub4-page4 .section {
  padding: 100px 0;
}

.sub4-page4 .section-label {
  display: block;
  color: #1C86FF;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sub4-page4 .section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #171717;
}

.sub4-page4 .section-text {
  font-size: 18px;
  line-height: 1.4;
  color: #3a3a3a;
}

.sub4-page4 .section-desc {
  line-height: 1.4;
  font-size: 18px;
}



.sub4-page4 .image-wrapper {
  position: relative;
  height: 452px;
  width: 592px;
  overflow: hidden;
}

.sub4-page4 .content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards (Section 02) */
.sub4-page4 .card {
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
}
.sub4-page4 .ca{
  padding: 60px 34px 30px 34px;
  border-radius: 20px;
}
.sub4-page4 .card-accent {
  background-color: #DBECFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.sub4-page4 .card-image-box {
  position: relative;
  height: 240px;
  width: 320px;
  margin-bottom: 87px;
}

.sub4-page4 .card-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.sub4-page4 .blend-multiply {
  mix-blend-mode: multiply;
}

.sub4-page4 .card-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #171717;
  width: 100%;
}

.sub4-page4 .card-text {
  font-size: 16px;
  line-height: 1.4;
  color: #3a3a3a;
}

.sub4-page4 .card-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.sub4-page4 .icon-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.sub4-page4 .icon-box i {
  width: 1.75rem;
  height: 1.75rem;
}

/* Alternating List (Section 03) */
.sub4-page4 .alternating-list {
  display: flex;
  flex-direction: column;
}

.sub4-page4 .alt-item {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 117px;
  margin-bottom: 80px;
}
.sub4-page4 .reverse-inner{
    flex: 1;
    max-width: none;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
}
.sub4-page4 .alt-item > .inner {
  flex: 1;
  max-width: none;
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
}

.sub4-page4 .alt-media {
  width: 50%;
  height: 480px;
  flex-shrink: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sub4-page4 .alt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sub4-page4 .alt-item.reverse .alt-media {
  order: 2;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.sub4-page4 .alt-item.reverse .alt-media img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.sub4-page4 .alt-content {
  width: 592px;
  height: 355px;
}

.sub4-page4 .alt-item.reverse .alt-content {
  padding-right: 0;
  margin-left: auto;
}

.sub4-page4 .alt-caption {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
  color: #1C86FF;
}

.sub4-page4 .alt-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  color: #171717;
  font-weight: 700;
}

.sub4-page4 .alt-desc {
  font-size: 16px;
  line-height: 1.4;
  padding-bottom: 40px;
  border-bottom: 1px solid #F5F5F5;
}

.sub4-page4 .alt-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #171717;
  padding-top: 40px;
}

.sub4-page4 .alt-text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .sub4-page4 .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sub4-page4 .grid-3 {
    grid-template-columns: 1fr;
  }

  .sub4-page4 .span-2 {
    grid-column: auto;
  }

  .sub4-page4 .alt-item {
    flex-direction: column;
  }

  .sub4-page4 .alt-item > .inner {
    padding: 3rem 2rem;
  }

  .sub4-page4 .alt-media {
    width: 100%;
    height: 400px;
    border-radius: 0;
  }

  .sub4-page4 .alt-media img {
    border-radius: 0;
  }

  .sub4-page4 .alt-content {
    width: 100%;
    padding: 0;
  }

  .sub4-page4 .alt-item.reverse {
    flex-direction: column;
  }

  .sub4-page4 .alt-item.reverse .alt-media {
    order: -1;
    border-radius: 0;
  }

  .sub4-page4 .alt-item.reverse .alt-media img {
    border-radius: 0;
  }

  .sub4-page4 .alt-item.reverse .alt-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .sub4-page4 .section {
    padding: 4rem 0;
  }

  .sub4-page4 .hero-title {
    font-size: 2rem;
  }

  .sub4-page4 .section-title {
    font-size: 1.75rem;
  }

  .sub4-page4 .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ==============================
Section : sub4 끝
============================== */

/* ==============================
Section : sub5
============================== */
/* Hero */
.sub5-page5 .hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   padding: 272px 0px 192px 0;
}

.sub5-page5 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sub5-page5 .hero-overlay {
  position: absolute;
  z-index: 2;
}

.sub5-page5 .hero .inner {
  position: relative;
  z-index: 10;
}

.sub5-page5 .hero-content {
  text-align: center;
  color: #ffffff;
  padding: 0 16px;
}

.sub5-page5 .hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sub5-page5 .hero-desc {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

/* Breadcrumb */
.sub5-page5 .breadcrumb-bar {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.sub5-page5 .breadcrumb-bar .inner {
  height: auto;
  flex-direction: row;
}

.sub5-page5 .breadcrumb-con {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  color: #6b7280;
}

.sub5-page5 .breadcrumb-icon,
.sub5-page5 .breadcrumb-sep {
  width: 14px;
  height: 14px;
}

.sub5-page5 .breadcrumb-current {
  color: #111827;
  font-weight: 500;
}

/* Content 01 */
.sub5-page5 .section-01 {
  padding: 96px 0;
}

.sub5-page5 .section-header {
  margin-bottom: 40px;
  display: flex;

  align-items: center;
  gap: 54px;
}

.sub5-page5 .section-header.text-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sub5-page5 .section-label {
  color: #1C86FF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.sub5-page5 .section-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #171717;
  margin-bottom: 20px;
}

.sub5-page5 .section-desc {
  color: #3A3A3A;
  font-size: 18px;
  flex: 1;
}

.sub5-page5 .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sub5-page5 .card-item {
  cursor: pointer;
}

.sub5-page5 .card-thumb {
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.sub5-page5 .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sub5-page5 .card-item:hover .card-thumb img {
  transform: scale(1.05);
}

.sub5-page5 .card-title {
  color: #171717;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.sub5-page5 .card-desc {
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.4;
}

/* Content 02 */
.sub5-page5 .section-02 {
  background-color: #FAFBFD;
  padding: 96px 0;
}

.sub5-page5 .section-02 .section-header {
  margin-bottom: 64px;
  display: block;
}

.sub5-page5 .section-02 .section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #171717;
}

.sub5-page5 .content-split {
  display: flex;
  gap: 125px;
}

.sub5-page5 .sidebar {
  width: 280px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub5-page5 .sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-radius: 10px;
  text-align: left;
  font-weight: 500;
  background: white;
  border: 1px solid #f3f4f6;
  color: #374151;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 18px;
}

.sub5-page5 .sidebar-btn.active {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}
.sub5-page5 .sidebar-btn.active .sidebar-arrow {
  display: block !important;
  filter: brightness(0) invert(1); /* 흰색 */
}

.sub5-page5 .sidebar-btn.active .sidebar-arrow {
  filter: brightness(0) invert(1); /* 흰색 */
}

.sub5-page5 .sidebar-btn:not(.active):hover {
  background: #f9fafb;
}

.sub5-page5 .sidebar-arrow {
  width: 24px;
  height: 21px;
  filter: brightness(0); /* #171717 */
}

.sub5-page5 .sidebar-arrow {
  width: 24px;
  height: 21px;
  color: #9ca3af;
}

.sub5-page5 .icon-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sub5-page5 .icon-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.sub5-page5 .icon-card:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.sub5-page5 .icon-wrapper {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  color: #3b82f6;
}

/* Content 03 */
.sub5-page5 .section-03 {
  padding: 100px 0 138px 0px;
}

.sub5-page5 .section-03 .section-header {
  text-align: center;
  margin-bottom: 80px;
  display: block;
}

.sub5-page5 .section-03 .section-desc {
  color: #3a3a3a;
  font-size: 18px;
  margin: 0 auto;
  flex: none;
  min-width: unset;
}

.sub5-page5 .feature-block {
  display: flex;
  align-items: center;
  gap: 119px;
  margin-bottom: 96px;
}

.sub5-page5 .feature-block:last-child{
  margin-bottom: 0;
}

.sub5-page5 .feature-block.reverse {
  flex-direction: row-reverse;
}

.sub5-page5 .feature-image {
  width: 748px;
  height: 360px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.sub5-page5 .feature-image.right {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.sub5-page5 .feature-image img{
  width: 748px;
  height: 360px;
}

.sub5-page5 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub5-page5 .feature-content {
  width: 693px;
}
.sub5-page5 .feature-content.right {
 width: 693px;
}

.sub5-page5 .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.sub5-page5 .feature-text {
  display: flex;
  flex-direction: column;
  color: #4b5563;
  font-size: 15px;
}

.sub5-page5 .icon-svg {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .sub5-page5 .content-split {
    flex-direction: column;
  }

  .sub5-page5 .sidebar {
    width: 100%;
  }

  .sub5-page5 .feature-block {
    flex-direction: column;
    gap: 48px;
  }

  .sub5-page5 .feature-image,
  .sub5-page5 .feature-content {
    width: 100%;
  }

  .sub5-page5 .feature-block.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .sub5-page5 .card-grid {
    grid-template-columns: 1fr;
  }

  .sub5-page5 .icon-grid {
    grid-template-columns: 1fr;
  }

  .sub5-page5 .hero-title {
    font-size: 32px;
  }

  .sub5-page5 .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sub5-page5 .hidden-md {
    display: none;
  }
}

/* ==============================
Section : sub5 끝
============================== */

/* ==============================
Section : faq
============================== */

/* Layout */
.qna-container {
  min-height: 100vh;
}

.qna-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.qna-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  height: 80px;
}

.qna-header .qna-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.qna-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qna-logo-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.qna-logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: #1c86ff;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.qna-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.qna-nav-item {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

.qna-nav-item:hover {
  color: #1c86ff;
}

.qna-nav-item.active {
  color: #1c86ff;
  font-weight: 700;
  border-bottom: 2px solid #1c86ff;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

/* Hero */
.qna-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 280px 0px 200px 0px;
}

.qna-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qna-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}

.qna-hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.qna-hero-desc {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
}

/* Breadcrumb */
.qna-breadcrumb {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f1f3f5;
  height: 56px;
}

.qna-breadcrumb .qna-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.qna-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.qna-breadcrumb-item:hover {
  color: #333;
}

.qna-breadcrumb-separator {
  font-size: 12px;
  color: #ced4da;
}

.qna-breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Main Content */
.qna-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

/* Search */
.qna-search-wrapper {
  position: relative;
  max-width: 640px;
  margin: 0 auto 48px;
}

.qna-search-input {
  width: 100%;
  height: 56px;
  padding: 0 60px 0 32px;
  border-radius: 28px;
  border: 1px solid #e9ecef;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.qna-search-input:focus {
  outline: none;
  border-color: #1c86ff;
  box-shadow: 0 0 0 1px #1c86ff;
}

.qna-search-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

/* Tabs */
.qna-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.qna-tab-btn {
  padding: 9.5px 41.5px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  background-color: #FAFBFD;
  color: #B5B5B5;
  transition: all 0.2s;
}

.qna-tab-btn:hover {
  background-color: #e9ecef;
}

.qna-tab-btn.active {
  background-color: #1c86ff;
  color: #fff;
  box-shadow: 0 4px 6px rgba(26, 124, 255, 0.2);
}

/* FAQ List */
.qna-list {
  border-top: 2px solid #212529;
}

.qna-item {
  border-bottom: 1px solid var(--border-color);
}

.qna-item-header {
  width: 100%;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
  text-align: left;
}

.qna-item-header:hover {
  background-color: #f8f9fa;
}

.qna-item-title-box {
  display: flex;
  align-items: center;
  flex: 1;
}

.qna-q-mark {
  color: #1c86ff;
  font-weight: 700;
  font-size: 20px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.qna-item-category {
  color: #adb5bd;
  font-size: 14px;
  font-weight: 500;
  width: 64px;
  text-align: center;
  flex-shrink: 0;
}

.qna-item-question {
  margin-left: 8px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

.qna-item-header:hover .qna-item-question {
  color: #1c86ff;
}

.qna-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.qna-item.active .qna-chevron {
  transform: rotate(180deg);
}

.qna-item-content {
  display: none;
  background-color: #FAFBFD;
  padding: 30px
}

.qna-item.active .qna-item-content {
  display: block;
}

.qna-answer-text {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Pagination */
.qna-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 64px;
}

.qna-page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  font-size: 14px;
  color: #495057;
  transition: all 0.2s;
}

.qna-page-btn:hover:not(.disabled) {
  background-color: #f8f9fa;
}

.qna-page-btn.active {
  background-color: #1c86ff;
  color: #fff;
  border-color: #1c86ff;
  font-weight: 500;
}

.qna-page-btn.disabled {
  background-color: var(--bg-light);
  color: #adb5bd;
  cursor: not-allowed;
}

/* Icons */
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
