* {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
 }

 html, body {
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
 }
img {
    max-width: 100%;
    vertical-align: top;
 }

 .body_wrap {
    max-width: 600px;
    margin:0 auto;
    position: relative;
    padding-bottom: 140px;
 }

 .body_wrap img {
    width: 100%;
 }

.slick-dots {
    position: absolute;   /* 슬라이드 영역 기준으로 고정하고 싶다면 absolute */
    bottom: 20px;         /* 슬라이드 하단에서 10px 정도 띄움 (원하는 값으로 조절 가능) */
    left: 50%;            /* 가로 중앙 기준 */
    transform: translateX(-50%); /* 중앙 정렬 보정 */
    display: flex !important;    /* flex로 표시 */
    justify-content: center;    /* 가운데 정렬 */
    padding: 0;
    margin: 0;
    list-style: none;
}
.slick-dots li button {
    font-size: 0;    /* 숫자 안보이게 */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #02FF50;   /* 활성 dot 색 */
}
.accordion {
    overflow: hidden;
    border-top: 1px solid #444;
}

.accordion-item {
    border-bottom: 1px solid #444;
}

.accordion-title {
    background-color: #040b0e;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.accordion-icon {
    color: #ccc;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}
.accordion-title.active {
  color: #0098ff;
}
.accordion-title.active .accordion-icon {
  color: #0098ff;
}
.accordion-content {
    display: none;
    padding: 30px 20px;
    border-top: 1px solid #444;
    background-color: #11151f;
    color: #EBEBEB;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
}

.bottom_kakao {
  display: block;
  max-width: 600px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fixed_link {
  position: fixed;
  right: 20px;
  bottom: 100px;
}
.fixed_link a {
  display: inline-block;
  width: 140px;
  margin-bottom: 20px;
}
.fixed_link a img {
  width: 100%;
}

.form_wrap {
   text-align: center;
   width: 100%;
   padding: 40px 60px 60px 60px;
   background-color: #fff;
}
.form_wrap h1 {
   color: #2349AA;
   font-size: 32px;
   letter-spacing: -1px;
   font-weight: 600;
   line-height: 1;
   margin-top: 0;
   margin-bottom: 30px;
}

.form_wrap input,
.form_wrap select {
   display: block;
   width: 100%;
   padding: 12px;
   border:  1px solid #ccc;
   font-size: 16px;
   font-family: 'Pretendard', sans-serif;
   border-radius: 5px;
   margin-bottom: 10px;
}

.form_wrap input[type='button'] {
   margin: 0 auto;
   margin-top: 30px;
   width: 100%;
   color: #fff;
   background-color: rgb(35, 73, 170);
   transition: background-color 0.3s ease;
   cursor: pointer;
   border-radius: 10px;
   border: 0;
   font-weight: 600;
   font-size: 20px;
}
.form_wrap input[type='button']:hover {
      background-color: rgb(0, 58, 150);
}

@media (max-width: 720px){
   .body_wrap {
    padding-bottom: 100px;
   }
  .accordion-title {
    font-size: 16px;
  }
  .accordion-content {
    font-size: 16px;
    padding: 25px 15px;
  }
  .fixed_link {
    right: 10px;
    bottom: 90px;
  }

  .fixed_link a {
    width: 100px;
    margin-bottom: 10px;
  }

  .form_wrap {
    padding: 30px 20px 40px 20px;
  }
  .form_wrap h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .form_wrap input[type='button'] {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
  }
}