.form-container {
  background-color: white;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  margin-bottom: 5px;
}

.form-container p {
  color: gray;
  margin-bottom: 20px;
}

form.custom-contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.custom-contact-form label {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.custom-contact-form input,
.custom-contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.custom-contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-contact-form .form-check input {
  width: 16px;
  height: 16px;
  margin-top: 10px;
}

.custom-contact-form .form-check label {
  font-size: 14px;
  padding-left: 5px;
  padding-top: 4px;
}

.custom-contact-form .submit-btn {
  margin-top: 10px;
  width: 100px;
  background-color: #5f9bce;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.custom-contact-form .submit-btn:hover {
  background-color: #70ace0;
}
