* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  max-width: 100%;
}

.all-wrap {
  max-width: 1000px;
  width: 100%;
  /* 브라우저 크기에 맞게 자동 조정 */
  margin: 0 auto;
  padding: 25px 10px 10px 10px;
  overflow: visible !important;
}

/* 전체 레이아웃 */
.content-wrapper {
  max-width: 1000px;
  /* margin: 10px auto; */
  padding: 35px;
  margin-top: 30px;
  width: 100%;
  overflow: visible !important;
  background-color: rgb(0, 0, 0);
}

/* 상단 헤더 스타일 */
.header {
  display: flex;
  align-items: flex-start;
  /* 상단 정렬 */
  gap: 10px;
  /* 요소 간격 */
  margin-bottom: 15px;
  /* 아래 리스트와 간격 */
}

.title {
  font-size: 30px;
  line-height: 24px;
  font-weight: 800;
  color: rgb(255, 255, 255);
}

.title-wing {
  color: rgb(176, 173, 173);
  font-size: 15px;
  line-height: 15px;
}

/* 제목 스타일 */
h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #333;
  padding-bottom: 10px;
}

/* 본문 스타일 */
p {
  font-size: 0.9em;
  line-height: 1.6;
}

/* Sticky title */
.sub-title {
  max-width: 100%;
  /* 브라우저 크기에 맞게 자동 조정 */
  display: flex;
  white-space: nowrap;
  margin-bottom: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: sticky !important;
  font-weight: 700;
  font-size: 1.5em;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 0.4px solid #000;
  transition: border-bottom-color 0.3s ease-in-out, color 0.3s ease-in-out;
  /* padding: 10px 0px; */
}

.sub-title.sticky {
  border-bottom-color: #ccc;
}

/* 본문 요약 */
.sub-p {
  width: 350px;
  margin: 0;
  transition: color 0.3s ease-in-out, color 0.3s ease-in-out;
  height: 45px;
  line-height: 45px;
  text-align: left;
}

.sub-short {
  width: 650px;
  text-align: right;
  font-size: 0.6em;
  height: 45px;
  line-height: 45px;
}

.sub-short ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.sub-short ul li {
  height: 45px;
  line-height: 45px;
  cursor: pointer;
}

.simple-features-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.simple-features-list li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
}

.simple-features-list strong {
  color: #000;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* 리스트 스타일 */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  line-height: 2;
}

.module-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* 가로 정렬이 넘치면 다음 줄로 넘겨줌 */
  /* .module 요소들 사이에 간격 추가 (선택사항) */
  justify-content: space-evenly;
  margin-bottom: 60px;
}

.module {
  flex: 1 1 290px;
  /* .module의 고정 너비 설정 */
  max-width: 290px;
  /* 최대 너비를 290px로 고정 */
  box-sizing: border-box;
  margin: 10px 0;
  /* 각 .module 사이의 아래쪽 간격 */
  font-size: 13pt;
}

.module ul {
  list-style: none;
  padding: 0;
}

.module ul li {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: rgb(214, 212, 212);
  text-align: center;
}

.hover-text:hover {
  color: #046cdb;
}

.close {
  color: red;
  position: absolute;
  top: -2px;
  right: 5px;
  font-size: 36px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.progress-bar-container {
  width: 100%;
  /* Adjusted height */
  background-color: #000;
  /* Black background */
  display: flex;
  align-items: flex-start;
  /* Align items to the top */
  position: relative;
  margin-bottom: 50px;
}

.progress {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Stack elements vertically */
}

.bar-line {
  width: 100%;
  /* Long thin white line */
  height: 0.5px;
  background-color: rgb(137, 137, 137);
}

.bar-box {
  width: 5%;
  /* Small blue box */
  height: 5px;
  /* Tall blue box */
  background-color: #4a9bdc;
  /* Move blue box downward */
}

.title-sub {
  margin-bottom: 30px;
}

.title-sub li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 23px;
  font-weight: 600;
  line-height: 23px;
  margin: 0;
  padding: 0;
  margin-top: 25px;
}

.title-sub li:nth-child(2) {
  color: rgb(137, 137, 137);
  font-size: 15px;
  font-weight: 100;
  line-height: 10px;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .sub-title {
    display: block !important;
  }
  .sub-p {
    width: 100%;
    text-align: left;
  }
  .sub-short {
    width: 100%;
    text-align: center;
  }
  .sub-short ul {
    justify-content: center;
  }
}
