.content-container{
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 20px;
  color: #333;
}

/* 外层容器 */
.inquiry-form-wrap {
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 标题 */
.inquiry-form-wrap h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #095f70;
  color: #095f70;
}

/* 表单组 */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: black;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

/* 预约状况中单选框 */
.form-group .group-label {
  font-weight: bold;
  margin-right: 10px;
  color: black;
}

.form-group label input[type="radio"] {
  margin-right: 5px;
}

/* 备注 */
.note {
  font-size: 0.9rem;
  color: #0073e6;
  margin-top: 5px;
}

/* 提交按钮 */
.form-actions {
  text-align: center;
  margin-top: 20px;
}

.form-actions button {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 3px;
  background: #ffc11c;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  line-height: 44px;
  width: 250px;
  text-align: center;
  transition: all 0.1s;
  -webkit-user-select: none;
  user-select: none;
}

.form-actions button:hover {
  background: #d6a10f;
}

/* 隐私政策说明 */
.privacy-notice {
  margin: 20px 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 注意提示 */
.notice {
  margin: 20px 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  margin-bottom: 5px;
  font-size: 0.95rem;
  color: black;
}

a{
  color: #0073e6;
}

#category{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: white;
  color: black;
  height: 42px;
}

#departure_date{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: white;
  color: black;
  height: 42px;
}

@media screen and (max-width: 768px){
  .content-container{
    padding: 0;
  }
}