/* ===== 웹폰트 ===== */
@font-face {
  font-family: "Jost*";
  src: url("fonts/Jost-Bold.eot");
  src: local("Jost* Bold"), local("Jost-Bold"),
    url("fonts/Jost-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Jost-Bold.woff2") format("woff2"),
    url("fonts/Jost-Bold.woff") format("woff"),
    url("fonts/Jost-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happiness-Sans";
  src: url("fonts/Happiness-Sans-Bold00.eot");
  src: local(""), local("Happiness-Sans-Bold00"),
    url("fonts/Happiness-Sans-Bold00.eot?#iefix") format("embedded-opentype"),
    url("fonts/Happiness-Sans-Bold00.woff2") format("woff2"),
    url("fonts/Happiness-Sans-Bold00.woff") format("woff"),
    url("fonts/Happiness-Sans-Bold00.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happiness-Sans";
  src: url("fonts/Happiness-Sans-Regular00.eot");
  src: url("fonts/Happiness-Sans-Regular00.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/Happiness-Sans-Regular00.woff2") format("woff2"),
    url("fonts/Happiness-Sans-Regular00.woff") format("woff"),
    url("fonts/Happiness-Sans-Regular00.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== 기본 스타일 ===== */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 좌우 스크롤 제거 */
  box-sizing: border-box;
  font-family: "Jost*", "Happiness-Sans", Arial, sans-serif; /* Use your custom fonts first */
  text-align: center;
  background-color: #f5f4ef;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* wrapper */
#wrapper {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* header */
header h1 {
  margin-bottom: 20px;
  font-size: 32px;
}

/* 버튼 */
a,
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
a:hover,
.button:hover {
  background: #333;
}

/* step */
.step {
  width: 100%; /* wrapper 안에서 꽉 채움 */
  max-width: 800px; /* 최대폭 */
  margin: 20px auto 60px auto;
  padding: 20px;
  box-sizing: border-box;
}

/* step 제목 영역 */
.step_title_wrapper {
  border: 1px solid black;
  border-radius: 80px;
  padding: 0px 20px;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* 화살표 */
.arrow {
  font-size: 24px; /* 화살표 크기 */
  color: black; /* 색상 */
  margin-top: 10px; /* step_title_wrapper와 간격 */
  text-align: center; /* 중앙 정렬 */
  margin-bottom: 20px;
}

/* step 텍스트 */
.step h2 {
  margin-bottom: 0px;
}
.step h3 {
  font-weight: normal;
  margin-top: 0;
}

/* 이미지 */
.step img {
  width: 90%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

.step .step1_second_img {
  margin-top: 30px;
}

.final-step img {
  width: 80%;
  margin: auto;
}

.bank-info {
  text-align: center;
  padding: 25px 0;
  background-color: #fff;
  border: 1px dashed #fce8a9; /* 점선 테두리로 강조 */
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin: 1.5rem auto;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
  line-height: 1.5;
}

.final-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 80px;
}

/* ===== 다음 단계 버튼 ===== */
.nextStepBtn {
  display: inline-block;
  margin: 40px auto 0 auto;
  padding: 20px 25px;
  background-color: #111; /* 버튼 배경색 */
  color: #fff; /* 글자색 */
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px; /* 둥근 모서리 */
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 그림자 */
}

.nextStepBtn:hover {
  background-color: #333; /* 마우스 올렸을 때 색 변경 */
  transform: translateY(-2px); /* 살짝 들리는 느낌 */
}

.phone-number-box {
  text-align: center;
  padding: 25px 10px;
  background-color: #fff;
  border: 1px dashed #fce8a9;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin: 1.5rem auto;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
  width: 80%;
}

.copyBtn {
  margin-left: 10px;
  padding: 8px 10px;
  font-size: 14px;
  /* font-weight: bold; */
  border-radius: 8px;
  /* background-color: #111; */
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* 
.copyBtn:hover {
  background-color: #333;
} */

