/* Base */
:root {
    --text: #111827;
    --muted: #4b5563;
    --border: #e5e7eb;
    --container-w: 1080px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  
  
  /* Process */
  .process {
    margin-bottom: 28px;
  }
  
  .process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  
  .process-item {
    --bg: #2a6db7;
    position: relative;
    background: var(--bg);
    color: #ffffff;
    padding: 14px 22px;
    min-width: 172px;
    min-height: 90px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
  }
  
  .process-item::before{
      content:"";
      position:absolute;
      right:-26px; top:0;
      width:0; height:0;
      border-top:45px solid transparent;
      border-bottom:45px solid transparent;
      border-left:26px solid #ffffff; /* 흰색 외곽선 */
  }
  
  .process-item::after{
      content:"";
      position:absolute;
      right:-24px; top:0;
      width:0; height:0;
      border-top:45px solid transparent;
      border-bottom:45px solid transparent;
      border-left:28px solid var(--bg); /* 본색 삼각형 */
  }
  
  .process-item:last-child::before,
  .process-item:last-child::after{ display:none; }
  
  .process-item:last-child::after {
    display: none;
  }
  
  .process-title {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  
  /* Colors per step (if further theming is needed) */
  .step-blue { --bg:#2a6db7; }
  .step-indigo { --bg:#215a9a; }
  .step-sky { --bg:#1f87d2; }
  .step-steel { --bg:#6a8aa7; }
  .step-teal { --bg:#3aa0a4; }
  
  /* Content sections */
  .content {
    margin-top: 28px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  
  .content h4 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .content .num {
    display: inline-block;
    margin-right: 8px;
    color: #0f5ca8;
  }
  
  .content p {
    margin: 10px 0;
    color: var(--muted);
  }
  
  .dash {
    margin: 8px 0 12px;
    padding-left: 18px;
  }
  
  .dash li {
    margin: 6px 0;
    color: var(--muted);
    list-style: none;
    position: relative;
  }
  
  .dash li::before {
    content: "–";
    position: absolute;
    left: -18px;
    color: #9ca3af;
  }
  .ks-flow_content1{
    padding-top:82.474%;
    background:url(/img/standard_national.png) no-repeat center top;
    background-size: 100%;
    height:0;
    text-indent:-99999px;
    overflow:hidden;
  }
  .ks-flow_content2{
    padding-top:60%;
    background:url(/img/standard_national2.png) no-repeat center center;
    background-size: 100%;
    height:0;
    text-indent:-99999px;
    overflow:hidden;
  }
  .m80{
    margin:80px 0;
  }
  .step-footer{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  /* Responsive */
  @media (max-width: 820px) {
    .page-title {
      font-size: 24px;
    }
    .process-list {
      gap: 16px;
    }
    .process-item {
      min-width: 160px;
      min-height: 80px;
      padding: 14px 18px;
      border-radius: 6px;
    }
    .process-item::after {
      right: -20px;
      border-top-width: 40px;
      border-bottom-width: 40px;
      border-left-width: 20px;
    }
  }
  
  @media (max-width: 560px) {
    .process-list {
      flex-direction: column;
      gap: 12px;
    }
    .process-item::after {
      display: none;
    }
    .process-item {
      min-width: auto;
      width: 100%;
    }
    .process-list{
      overflow-x: hidden;
      scrollbar-width: thin;
    }
    
  }
  .ks-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 공통 섹션 스타일 */
.ks-container .ks-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    border:0;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}

/* 왼쪽 원형 아이콘/타이틀 */
.circle-title {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    background-color: #fff;
    /* 파란색 배경 */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;

    position: relative;
}

/* 아이콘 이미지 (여기서는 폰트어썸이나 이미지 대체 가능) */
.circle-title img,
.circle-title i {
    font-size: 40px;
    /* 아이콘 크기 */
    margin-bottom: 10px;
    display: block;
    max-width:70% !important;
}

/* 원형 안의 텍스트 */
.circle-title h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 10px;
    word-break: keep-all;
}

/* 오른쪽 컨텐츠 영역 */
.content-area {
    flex: 1;
    padding-top: 10px;
}

/* 1. 개요 섹션 텍스트 */
.overview-title {
    color: #2b70c9;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overview-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    word-break: keep-all;
}

/* 2. 대상 섹션 */
.target-desc {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* 대상 - 박스 레이아웃 (서비스 원형 + 설명 박스) */
.target-box-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

/* 회색 원형 (서비스) */
.service-circle {
    width: 120px;
    height: 120px;
    background-color: #e6e9ed;
    border: 2px solid #2b70c9;
    /* 파란색 테두리 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2b70c9;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    /* 뒤에 오는 박스보다 위에 위치 */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* 회색 설명 박스 */
.desc-box {
    flex: 1;
    background-color: #f2f4f7;
    border: 1px solid #ddd;
    padding: 20px 20px 20px 50px;
    /* 왼쪽 여백을 줘서 원형과 겹치는 느낌 */
    margin-left: -30px;
    /* 원형 안쪽으로 파고들게 */
    border-radius: 4px;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 말풍선 꼬리 느낌 (옵션) */
.desc-box::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #f2f4f7 transparent transparent;
    z-index: 3;
}

/* 꼬리 테두리 */
.desc-box::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 11px;
    border-style: solid;
    border-color: transparent #ddd transparent transparent;
    z-index: 0;
}

.desc-list {
    list-style: none;
    font-size: 14px;
    color: #444;
}

.desc-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.desc-list li:last-child {
    margin-bottom: 0;
}

/* 리스트 불릿 점 */
/* .desc-list li::before {
content: '•';
position: absolute;
left: 0;
color: #666;
} */

/* 하단 버튼 */
.bottom-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-left: 200px;
    /* 왼쪽 원형만큼 밀어서 정렬 (선택사항) */
}

.btn-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-label {
    background-color: #9b27b0;
    /* 보라색 배경 */
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
}

.btn-logo {
    padding: 5px 15px;
    background-color: #fff;
}

.btn-logo img {
    height: 25px;
    /* 로고 높이 */
    vertical-align: middle;
}

/* 반응형 (모바일) */
@media (max-width: 768px) {
    .ks-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .content-area {
        text-align: left;
        width: 100%;
    }

    .target-box-wrapper {
        flex-direction: column;
    }

    .service-circle {
        margin-bottom: -20px;
        /* 박스 위로 겹치게 */
        margin-right: 0;
    }

    .desc-box {
        margin-left: 0;
        padding: 30px 20px 20px 20px;
        width: 100%;
        text-align: left;
    }

    .desc-box::before,
    .desc-box::after {
        display: none;
        /* 모바일에서 화살표 제거 */
    }

    .bottom-link {
        margin-left: 0;
    }
    .ks-container .ks-section{
      gap:0;
    }
}
@media (max-width: 520px) {
  .circle-title{
    margin:0 auto;
  }
  .ks-container{
    gap:20px;
  }
}
