@charset "utf-8";

/* 공통 */
body {
  background: #071812;
}
img {
  max-width: 100%;
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section2{
  text-align: center;
  margin-top: 100px;
  padding: 100px 0;
}
.section2 > .inner{
  display: inline-block;
}
.section2 > .inner > div > a:first-child{
  display: inline-block;
  margin-bottom: 40px;
}
.section3 {
  max-width: min(875px, calc(100vw - 40px));
  margin: 0 auto;
  background: #072718;
  border-radius: 30px;
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
  padding: 70px 0;
}
.section3 > .inner > p:nth-child(1),
.section3 > .inner > p:nth-child(2) {
  font-size: 50px;
  letter-spacing: -6px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.section3 > .inner > p:nth-child(2) {
  margin-bottom: 50px;
  color: #fddb00;
}
.section3 > .inner > p:last-child {
  color: #fff;
  margin-top: 50px;
  text-align: center;
  font-size: 30px;
  letter-spacing: -3px;
}
.section3 > .inner > p:last-child > span {
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
}

.kakao-swiper img {
  max-width: 70vw;
}

.kakao-swiper p {
  color: #fff;
  margin-top: 100px;
  text-align: center;
  font-size: 30px;
  letter-spacing: -3px;
}
.swiper-slide > p > span{
  font-weight: bold;
}
.swiper-pagination {
  bottom: 107px !important ;
}

.user-val {
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.user-val form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-input span {
  padding: 12px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #666;
}

.phone-input input {
  flex: 1;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* 반응형 */
@media screen and (min-width:340px) and (max-width:500px) {
  .section2 {
    margin-top: 30px;
    padding: 50px;
  }
  .section3 {
    margin-top: 30px;
  }
  .section3 > .inner > p:nth-child(1),
  .section3 > .inner > p:nth-child(2) {
    font-size: 26px;
    letter-spacing: -3px;
  }
  .section3 > .inner > p:last-child {
    font-size: 20px;
  }
  .kakao-swiper p {
    font-size: 20px;
  }
  .section2 > .inner > div > a:first-child {
    margin-bottom: 20px;
  }
  
  /* 폼 반응형 */
  .user-val {
    padding: 15px 10px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group textarea {
    padding: 8px;
    font-size: 14px;
  }
  
  .phone-input span {
    padding: 8px;
    font-size: 14px;
  }
  
  button[type="submit"] {
    padding: 10px;
    font-size: 14px;
  }
  /* 입력폼 */
  .section2 {
    margin-top: 30px;
    padding: 50px;
  }
  .section3 {
    margin-top: 30px;
  }
  .section3 > .inner > p:nth-child(1),
  .section3 > .inner > p:nth-child(2) {
    font-size: 26px;
    letter-spacing: -3px;
  }
  .section3 > .inner > p:last-child {
    font-size: 20px;
  }
  .kakao-swiper p {
    font-size: 20px;
  }
  .section2 > .inner > div > a:first-child {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .user-val {
    padding: 20px 15px;
  }
  
  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group>textarea{
    box-sizing: border-box;
  }
  
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group textarea {
    box-sizing: border-box;
    padding: 10px;
    font-size: 15px;
  }
  
  .phone-input span {
    padding: 10px;
    font-size: 15px;
  }
  
  button[type="submit"] {
    padding: 12px;
    font-size: 15px;
  }
}

