/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Base */
html {
  overflow-x: hidden;
  background-color: #00073c;
  scroll-behavior: smooth;
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
}

body {
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  padding-bottom: 72px;
}

img {
  display: block;
}

.img_30 {
  width: 30%;
}

.img_40 {
  width: 40%;
}

.img_45 {
  width: 45%;
}

/* Fixed Button */
.fixedBtn {
  width: 240px;
  position: fixed;
  bottom: 160px;
  right: 53px;
  z-index: 100;
  display: block;
  transition: opacity 0.3s ease;
}

.fixedBtn img {
  width: 100%;
  display: block;
}

.fixedBtn.hide {
  opacity: 0;
  pointer-events: none;
}

.custom-button-1 {
  position: fixed;
  bottom: 75px;
  right: 53px;
  z-index: 100;
  display: none;
  transition: opacity 0.3s ease;
  background-color: none;
  border: none;
  cursor: pointer;
}

/* 중간 스크롤 알림 팝업 (ccl_ko 스타일 매칭) */
.name-input-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  animation: slideInCenter 0.5s ease-out;
}

.alert-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #5b9cff 0%, #182fff 100%);
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90vw;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.alert-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.alert-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-text {
  flex: 1;
}

.alert-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.alert-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.alert-close {
  background: #fff;
  border: none;
  color: #004aad;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 10px;
}

.name-input-alert.fade-out {
  animation: slideOutCenter 0.5s ease-in forwards;
}

@keyframes slideInCenter {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes slideOutCenter {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .name-input-alert {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .alert-content {
    max-width: 350px;
    width: 85vw;
    padding: 15px;
  }
  .alert-title {
    font-size: 14px;
  }
  .alert-subtitle {
    font-size: 12px;
  }
  .alert-icon {
    font-size: 20px;
  }
}

#header {
  width: 100%;
  background-color: #3649cf;
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  bottom: -1px;
  left: 0;
  z-index: 120;
}

.header-inner {
  width: 100%;
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contents {
  display: flex;
  align-items: center;
  gap: 30px;
}

.countdown-today {
  display: flex;
  align-items: center;
  gap: 30px;
}

.countdown-today p,
.countdown-text {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.countdown-info {
  font-size: 13px;
  white-space: nowrap;
}

.countdown-today-contents {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-logo {
  width: 170px;
}

.topRight {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.topRight .speechBubble {
  position: absolute;
  top: -110%;
  right: 0;
  background-color: #fff288;
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.topRight .speechBubble:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff288;
  position: absolute;
  bottom: -5px;
  left: 80%;
  transform: translateX(-50%) rotate(45deg) skew(15deg, 15deg);
}

.topRight .speechBubble p {
  position: relative;
  z-index: 10;
}

.topRight .speechBubble span {
  font-weight: bold;
}

.topRight .topBtn {
  border-radius: 30px;
  overflow: hidden;
  width: 170px;
}

.topRight .topBtn img {
  width: 100%;
}

#header .num-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

#header .num-box span {
  font-family: 'Bebas Neue', sans-serif;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 40px;
  padding-top: 2px;
}

/* =========================================================================== */

.videoTitleBox {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.videoTitleBox::after {
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(0, 7, 60, 1) 0%, rgba(0, 7, 60, 0) 100%);
  position: absolute;
  top: 57%;
  left: 0;
  z-index: 5;
  transform: translateY(-50%);
}

.videoTitleBox .partners_logo {
  width: 30%;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.videoTitleBox video {
  width: 70%;
  transform: translateY(-28%);
}

.videoTitleBox .videoTitle {
  width: 27%;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.videoVisualBox {
  width: 53%;
  margin: 0 auto;
  overflow: hidden;
  transform: translateY(-45%);
  position: relative;
  z-index: 15;
}

.videoVisualBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section01 {
  height: 120vh;
  overflow: hidden;
}

.section01::before {
  content: '';
  display: block;
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  background: linear-gradient(90deg, rgb(0 7 60) 15%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 80%, rgba(0 7 60) 85%);
  z-index: 80;
}

/* =========================================================================== */

.section02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 200px 0 0;
}

.section02_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section02_contents img {
  margin-bottom: -120px;
}

.section02_contents img:last-child {
  margin-bottom: 0;
}

.section02_contents .q_1,
.section02_contents .q_3 {
  transform: translateX(-20%);
}
.section02_contents .q_2,
.section02_contents .q_4 {
  transform: translateX(20%);
}

/* =========================================================================== */

.section03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
  gap: 100px;
}

.section03 > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section03_contents {
  gap: 50px;
  text-align: center;
}

.circle_blue {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background-color: #15269e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
  box-shadow: 0 0 23px 0 rgba(42, 68, 255, 0.8);
}

.circle_lightblue {
  background-color: #2a44ff;
}

.section03 .section03_contents_01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  display: none;
}

.section03 .section03_contents_01 > img {
  width: 50%;
}

.section03 .section03_contents_01_inner {
  display: flex;
  gap: 20px;
}

.section03_contents_01_inner img {
  width: 33.333%;
}

.section03 .section03_contents_02 {
  flex-direction: column;
  gap: 60px;
  display: none;
}

.section03_contents_02_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  max-width: 1000px;
  margin: 0 auto;
}

.section03_contents_02 > img:first-child {
  width: 50%;
}

.section03_contents_02_inner img {
  width: 40%;
}

.section03_contents_03 {
  width: 38%;
  display: none;
}

/* =========================================================================== */

.section04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 70px;
}

.section04 p {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Gmarket Sans';

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, #e1e5ff, #7787ff, #e1e5ff, #7787ff, #e1e5ff, #7787ff, #e1e5ff);

  background-size: 400% 100%;
  background-position-y: 0%;
  animation: gradient 2s ease-in-out forwards infinite;
}

@keyframes gradient {
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: 100%;
  }
}

.section04 img {
  width: 35%;
}

/* =========================================================================== */

.section05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 70px;
  padding: 200px 0;
  color: #fff;
}

.section05_contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.graph_box {
  background: #000d6c;
  border-radius: 30px;
  padding: 50px 40px;
  box-sizing: border-box;
  font-family: 'Gmarket Sans';
  white-space: nowrap;
}

.graph_box:nth-child(even) {
  background: transparent;
}

.graph_box .top,
.graph_box .bottom_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
  gap: 30px;
}

.graph_box .top .line {
  width: 50px;
  height: 100px;
  border-radius: 10px 10px 0 0;
  background-color: #fff288;
  height: 0;
  opacity: 1;
  animation: graphAnimation 4.5s infinite;
}

.graph_box.roas_box .top_left .line {
  height: 0;
  opacity: 1;
  animation: roasLeftAnimation 4.5s infinite;
}

.graph_box.roas_box .top_right .line {
  height: 0;
  opacity: 1;
  animation: roasRightAnimation 4.5s infinite;
}

.graph_box.cpm_box .top_left .line {
  height: 0;
  opacity: 1;
  animation: cpmLeftAnimation 4.5s infinite;
}

.graph_box.cpm_box .top_right .line {
  height: 0;
  opacity: 1;
  animation: cpmRightAnimation 4.5s infinite;
}

.graph_box.cpc_box .top_left .line {
  height: 0;
  opacity: 1;
  animation: cpcLeftAnimation 4.5s infinite;
}

.graph_box.cpc_box .top_right .line {
  height: 0;
  opacity: 1;
  animation: cpcRightAnimation 4.5s infinite;
}

@keyframes graphAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  90% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes roasLeftAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 90%;
    opacity: 1;
  }
  90% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes roasRightAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 40%;
    opacity: 1;
  }
  90% {
    height: 40%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes cpmLeftAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 55%;
    opacity: 1;
  }
  90% {
    height: 55%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes cpmRightAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 65%;
    opacity: 1;
  }
  90% {
    height: 65%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes cpcLeftAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 40%;
    opacity: 1;
  }
  90% {
    height: 40%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes cpcRightAnimation {
  0% {
    height: 0;
    opacity: 1;
  }
  30% {
    height: 60%;
    opacity: 1;
  }
  90% {
    height: 60%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

.graph_box .top_left,
.graph_box .top_right {
  width: 50px;
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
}

.graph_box .top_left .line {
  background: linear-gradient(to bottom, #ffface, #fff288);
}
.graph_box .top_right .line {
  background: linear-gradient(to bottom, #dee2ff, #4d63ff);
}

.graph_box .top_left > img,
.graph_box .top_right > img {
  width: 150%;
  opacity: 0;
  animation: imageAnimation 4.5s infinite;
}

@keyframes imageAnimation {
  0%,
  30% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.graph_box .bottom_top {
  border-top: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 20px;
}

.graph_box .bottom_top span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  font-family: 'Gmarket Sans';
  background-color: #4d64ff;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 3px;
}

.graph_box .bottom_top span:first-child {
  background-color: #fff288;
  color: #00073c;
}

.graph_box .bottom_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Gmarket Sans';
}

.graph_box .bottom_bottom span {
  font-weight: 100;
  font-size: 16px;
}

/* ========================================================================= */

.section06 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 70px;
}

.section06 > div {
  display: flex;
  align-items: center;
  gap: 50px;
}

.section06_contents_phone {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ========================================================================= */

.section07 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
  gap: 70px;
  max-width: 900px;
  margin: 0 auto;
}

.section07 .section07_contents {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.section07 .section07_contents .swiper-wrapper {
  display: flex;
  align-items: center;
}
.section07 .section07_contents .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section07 .section07_contents .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================================= */

.section08 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.section08_contents {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.section08_contents > img {
  border-radius: 23px;
  overflow: hidden;
}

/* ========================================================================= */

.section09 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 0 50px;
  gap: 100px;
}

#counsel_platform {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

#counsel_platform label {
  display: inline-flex;
  gap: 5px;
  font-weight: 400;
}

/* Section 12 */
.section12 {
  position: relative;
  width: 67%;
  margin: 0 auto 50px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #15259c;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section12 .section12_bg {
  width: 57%;
}

.section12_contents {
  padding: 35px 50px;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
}

#submitBtn {
  width: 95%;
}

.section12_title {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #15259c;
  font-family: 'Gmarket Sans';
}

/* Section12 모달 스타일 */
.section12_contents.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section12_contents.modal > .form_section {
  position: relative;
  width: 80%;
  max-width: 500px;
  height: auto;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 45px 40px 40px;
  box-sizing: border-box;
}

.section12_contents.modal .section12_title {
  font-size: 28px;
  margin-bottom: 30px;
}

/* 모달 닫기 버튼 */
.section12_modal_close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  line-height: 1;
  background-color: #15259c;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

.section12_contents.modal .section12_modal_close {
  display: flex;
}

.section12_modal_close:hover {
  background-color: #2a44ff;
}

/* Scroll Section */
.scroll_inner {
  width: 74%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
}

.scroll_section {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #ddd;
}

.scroll_section .scroll_section_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background-color: #f5f5f5;
  padding: 10px 50px;
}

.scroll_section .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 76px;
  padding: 0 30px;
  font-size: 17px;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

.scroll_section .swiper-slide img {
  height: 30px;
}

.scroll_section .item-date {
  font-weight: bold;
}

.scroll_section .mySwiper_wrapper {
  width: 100%;
  height: calc(100% - 40px);
}

.scroll_section .mySwiper {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 25px;
}

.scroll_section .mySwiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 76px;
  padding: 0 30px;
  font-size: 17px;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

.scroll_section .mySwiper .vertical-banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}

.scroll_section .mySwiper .vertical-banner-item.item-date {
  font-weight: bold;
  flex: 0.8;
}

.scroll_section .mySwiper .vertical-banner-item.item-name {
  flex: 1;
  transform: translateX(23px);
}

.scroll_section .mySwiper .vertical-banner-item.item-phone {
  flex: 1.2;
  transform: translateX(30px);
}

.scroll_section .mySwiper .vertical-banner-item.item-btn {
  flex: 0.8;
  height: 30px;
  object-fit: contain;
}

/* Form Section */
.form_section {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  align-items: center;
}

.inputForm-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.inputForm-wrapper > div {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
}

.inputForm-wrapper > div label {
  font-weight: bold;
  margin-right: 10px;
  text-align: left;
  word-break: keep-all;
}

.inputForm-wrapper > div input,
.inputForm-wrapper > div select {
  flex: 1;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  box-sizing: border-box;
  background: transparent;
}

.inputForm-wrapper > div input::placeholder {
  color: #ccc;
}

.inputForm-wrapper > div select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  background: transparent;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
  cursor: pointer;
}

.inputForm-wrapper > div select:hover {
  border: 1px solid #ff2e63;
}

.inputForm-wrapper > div select:focus {
  outline: none;
  border-bottom: 1px solid #ff2e63;
}

.inputForm-wrapper > div select option {
  padding: 10px;
  font-size: 16px;
}

.inputForm-wrapper > div input:focus {
  outline: none;
  border-bottom: 2px solid #ff2e63;
}

/* Footer */
footer {
  position: relative;
  width: 100%;
}

footer .scrollTopBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
}

footer > img {
  width: 100%;
  display: block;
}

footer .scrollTopBtn img {
  width: 100%;
  display: block;
}

/* Privacy Box */
.privacy_box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.privacy_box label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.privacy_box input[type='checkbox'] {
  display: none;
}

.privacy_box input[type='checkbox'] + span {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
  background-color: #ccc;
  border-radius: 13px;
  transition: all 0.3s;
}

.privacy_box input[type='checkbox'] + span:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
}

.privacy_box input[type='checkbox']:checked + span {
  background-color: #1931e7;
}

.privacy_box input[type='checkbox']:checked + span:before {
  transform: translateX(25px);
}

.agreeText {
  font-size: 15px;
}

#agreeView {
  color: #2a44ff;
  text-decoration: underline;
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  width: 80%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.modal-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #666;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #ff2e63;
}
