body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

/* ✅ 전체 공통 폭 */
.section-box {
  width: 90%;
  max-width: 460px;
  margin: 0 auto;
}

/* ✅ 랜딩 섹션 */
#landing {
  background: linear-gradient(180deg, #4a00e0, #8e2de2);
  padding: 60px 0;
  text-align: center;
}

#landing img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ✅ 상담 섹션 */
#consult-form {
  background: linear-gradient(180deg, #8e2de2, #4a00e0);
  color: #fff;
  text-align: center;
  padding: 60px 0 100px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

p.subtitle {
  font-size: 16px;
  color: #eee;
  margin-bottom: 25px;
}

form {
  background: #fff;
  color: #222;
  width: 100%;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  box-sizing: border-box;
}

label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

.phone {
  display: flex;
  gap: 6px;
}

textarea {
  resize: none;
}

.agree {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-top: 10px;
}

button {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 0;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: linear-gradient(90deg, #5a00f0, #9f3df0);
}

.notice {
  font-size: 13px;
  color: #ccc;
  margin-top: 15px;
  text-align: center;
}

/* ✅ 모달 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 80%;
  max-width: 400px;
}

#closeModal {
  margin-top: 15px;
  padding: 10px 25px;
  background: #8e2de2;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
