/* Grid layout */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-left,
.form-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #ccc;
  color: #2e344f;
  font-size: 14px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #aaa;
}

.wpcf7-form label {
  color: #00bcd4;
  font-size: 14px;
  font-weight: 500;
}

/* Submit button */
.form-button {
  margin-top: 20px;
}

.wpcf7-submit {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.wpcf7-submit:hover {
  background-color: #00a2bb;
}                  