.contact-box textarea {
  width: 100%;
  height: 120px;          /* ⭐ 빈 공간 채우기용 */
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  resize: none;           /* 드래그 막기 */
  margin-bottom: 16px;
  font-family: inherit;
}

.contact-box textarea:focus {
  border-color: #1e6fff;
  outline: none;
}
    .partner-section {
  padding: 100px 0px;
  background: #fff;
}

.partner-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
}

/* LEFT */
.partner-left {
  flex: 6;
  padding:0px 32px;
}

.image-box {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e9f0ff, #f5f8ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8aa0d4;
  font-weight: 600;
  margin-bottom: 32px;
}

.partner-left h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.partner-left h2 strong {
  color: #1e6fff;
}

.partner-left .desc {
  color: #555;
  margin-bottom: 24px;
}

.benefit li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}

.benefit li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e6fff;
}

/* RIGHT */
.partner-right {
  flex: 4;
}

.contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-box h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.partner-left h2{
  font-weight: bold;
  font-size:20px;
}
.partner-right h3{
  font-weight: bold;
  font-size:20px;
}
.contact-box .sub {
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-box input {
  width: 100%;
  height: 52px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 16px;
  margin-bottom: 14px;
  font-size: 15px;
}

.contact-box input:focus {
  border-color: #1e6fff;
  outline: none;
}

.contact-box button {
  width: 100%;
  height: 56px;
  background: #ff6b00;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.contact-box button:hover {
  opacity: 0.9;
}

.contact-box .privacy {
  font-size: 12px;
  color: #999;
  margin-top: 14px;
  text-align: center;
}

/* MOBILE */
@media (min-width: 769px) {
  .contact-box {
    min-height: 560px;
    display: flex;
    flex-direction: column;
  }

  .contact-box textarea {
    flex: 1;              /* 🔥 남는 공간 자동 채움 */
  }

  .contact-box button {
    margin-top: auto;
  }
}
@media (max-width: 768px) {
  .partner-wrap {
    flex-direction: column;
  }

  .image-box {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .contact-box {
    position: sticky;
    top: 20px;
  }
}
@media (max-width: 768px) {
  .contact-box textarea {
    height: 100px;
    flex: none;
  }
}
.contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.contact-box button {
  margin-top: auto;
}