.request-quote-button {
  display: inline-block;
  color: #ffffff; /* White text */
  background-color: #5c6f74; /* Muted gray-teal */
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #5c6f74; /* Border matching the background */
  border-radius: 30px; /* Rounded corners */
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 10px; /* Space between Add to Cart and this button */
}

.request-quote-button:hover {
  background-color: #4a595e; /* Slightly darker gray-teal on hover */
  color: #ffffff; /* Keep text white */
  cursor: pointer;
}
