.quote-section {
  background-color: #f7f7f7;
  padding: 4rem 1rem;
}

.quote-title h2 {
  text-align: center;
  color: #034b5b;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quote-form .btn {
  background-color: #034b5b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.quote-form .btn:hover {
  background-color: #022f3a;
}
