.cf7-form-title {
  text-align: center;
  margin-bottom: 30px;
}
.cf7-form-title h2 {
  margin-bottom: 5px;
}
.cf7-form-title .en-title {
  color: #666;
  font-size: 0.9em;
}

.cf7-field {
  margin-bottom: 25px;
  background: #f7f3ea;
  /* background: #D3D3D3; */
  padding: 15px 20px;
}
.cf7-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.6;
}
.cf7-field label .en {
  font-weight: normal;
  color: #555;
}
.cf7-field .required {
  color: #d9534f;
  font-size: 0.85em;
  font-weight: normal;
}
.cf7-field .optional {
  color: #888;
  font-size: 0.85em;
  font-weight: normal;
}

.cf7-note {
  font-size: 0.85em;
  color: #777;
  margin: 4px 0 10px;
  line-height: 1.5;
}
.cf7-note .en {
  display: block;
}

.cf7-date-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cf7-date-row .date-label {
  min-width: 140px;
  font-size: 0.9em;
}
.cf7-date-row .date-label .en {
  display: block;
  font-size: 0.85em;
  color: #666;
}

.cf7-field input[type="text"],
.cf7-field input[type="email"],
.cf7-field input[type="tel"],
.cf7-field input[type="number"],
.cf7-field input[type="date"],
.cf7-field textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.cf7-notice {
  background: #f7f3ea;
  border-left: 4px solid #a67c52;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 2px;
}
.cf7-notice h3 {
  margin-top: 0;
}
.cf7-notice p {
  line-height: 1.7;
  margin: 8px 0;
}
.cf7-notice .en {
  color: #555;
  font-size: 0.9em;
}

.cf7-submit {
  text-align: center;
  margin-top: 30px;
}
.cf7-submit input[type="submit"] {
  background: #a67c52;
  /* background: #444; */
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
}
.cf7-submit input[type="submit"]:hover {
  background: #8c6642;
}

@media (max-width: 600px) {
  .cf7-date-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wpcf7-not-valid-tip {
  color: #d9534f;
  font-size: 0.85em;
  font-weight: normal;
}