.quote-section {
  padding: 60px 65px;
  background: #fff;
  font-family: Arial, sans-serif;
  margin-top: 75px;
}

.quote-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.quote-left, .quote-right {
  flex: 1 1 450px;
}

.quote-left h2 {
  font-size: 1.8rem;
  color: #8B0000;
  margin-bottom: 20px;
  line-height: 1.5;
}

.quote-left span {
  color: #8B0000;
}

.contact-info p {
  margin-bottom: 25px;
  color: #333;
}

.quote-right h3 {
  color: #8B0000;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.quote-description {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

.quote-note {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.quote-note a {
  color: #8B0000;
  text-decoration: none;
  margin-right: 5px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1 1 200px;
  padding: 10px;
  border: 1px solid #8B0000;
  border-radius: 4px;
  outline: none;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #222;
}

.form-group.services label {
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
  color: #444;
}

textarea {
  padding: 10px;
  border: 1px solid #8B0000;
  border-radius: 4px;
  resize: vertical;
  outline: none;
}

.quote-btn {
  background-color: #8B0000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  align-self: start;
}

.quote-btn:hover {
  background-color: #a30000;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-section {
    padding: 60px 30px;
  }  
  .quote-wrapper {
    flex-direction: column;
  }
  .quote-btn {
    width: 100%;
    text-align: center;
  }
}
