#request-quote-btn {
  background: #282828;
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#request-quote-btn:hover {
  background: #005f8a;
}
#request-quote-form {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #f9f9f9;
  max-width: 100%;
}
#request-quote-form input,
#request-quote-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 5px;
}
#request-quote-form button {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
}
#request-quote-form button:hover {
  background: #218838;
}
