/* Quote Container */
.quote-container {
  max-width: 1000px;
  margin: 50px auto;
  background-color: white;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Left side */
.quote-container .left {
  flex: 1;
  background-color: #b71c1c;
  border-radius: 10px 0 0 10px;
  padding: 20px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-container .left h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.quote-container .left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

/* Right side (form) */
.quote-container .right {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 0 10px 10px 0;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
}

.quote-form label {
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit button */
.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #b71c1c;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #8e1a1a;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .quote-container {
    flex-direction: column;
  }

  .quote-container .left,
  .quote-container .right {
    border-radius: 10px 10px 0 0;
  }
}
