/* Center only the enquiry form */
.enquiry-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  font-family: Arial, sans-serif;
}

/* Form container */
.form-container {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Header */
.form-header {
  background: #1958b4;
  padding: 15px;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
.form-header h2 {
  margin: 0;
  color: white;
  font-weight: bold;
}

/* Form */
form {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
  color:#000;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.checkbox-group label {
  font-weight: normal;
}

/* Button */
button {
  background: #1958b4;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
button:hover {
  background: #3a8bfa;
}