/* 문의게시판 전용 스타일 */

.inquiry__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.inquiry__info-box {
  background: rgb(221, 242, 255);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inquiry__info-box h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: 'SUIT', sans-serif;
  line-height: 140%;
  margin-bottom: 20px;
  color: #231815;
}

.inquiry__info-box .highlight {
  color: #fa0000;
  font-weight: 700;
}

.inquiry__info-list {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.inquiry__info-list li {
  padding: 12px 0;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  counter-increment: item;
  line-height: 150%;
}

.inquiry__info-list li::before {
  content: "0" counter(item) " ";
  font-weight: 500;
  font-size: 16px;
  color: #56a3f6;
  margin-right: 10px;
}

.inquiry__info-list .highlight {
  color: #56a3f6;
  font-weight: 600;
}

.inquiry__form-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #dededf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inquiry__form-container h3 {
  font-size: 22px;
  font-weight: 600;
  color: #231815;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #231815;
  margin-bottom: 8px;
}

.radio-group {
  display: flex;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.radio-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: none;
  color: #666;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.radio-btn.active {
  background: #5ebcfe;
  color: white;
}

.radio-btn:hover:not(.active) {
  background: rgba(94, 188, 254, 0.2);
}

.form-control,
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #dededf;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Pretendard', sans-serif;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-control:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #5ebcfe;
}

.form-control {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #acdcfe;
  background: #ceeafe;
  color: #231815;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #5ebcfe;
  border-color: #5ebcfe;
  color: white;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .inquiry__content {
    padding: 20px;
  }

  .inquiry__info-box,
  .inquiry__form-container {
    padding: 20px;
  }

  .inquiry__info-box h2 {
    font-size: 22px;
  }

  .inquiry__info-list li {
    font-size: 14px;
    padding: 10px 0;
  }
}
