/* Form container */
.quote-form {
  max-width: 700px;
  margin: 20px;
  padding: 20px 60px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

/* Section headings */
.quote-form h2 {
  font-size: 1.3em;
  margin-top: 30px;
  color: #003366;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

/* Labels and inputs */
.quote-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form input[type="date"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}

/* Textareas */
.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit button */
.quote-form button[type="submit"] {
  background-color: #00991f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-form button[type="submit"]:hover {
  background-color: #004d80;
}

/* Hide honeypot field */
.quote-form .honeypot {
  display: none !important;
}

/* Two-column field layout */
.quote-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.quote-form-col {
  flex: 1; /* make each field take up equal width */
  min-width: 0;
}

/* Stack on small screens */
@media screen and (max-width: 600px) {
  .quote-form-row {
    flex-direction: column;
  }
}



/* Responsive tweaks */
@media screen and (max-width: 600px) {
  .quote-form {
    padding: 15px;
  }
}