.contact-us {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.contact-us h2 {
  font-size: 2.2rem;
  color: #FF6F00;
  margin-bottom: 2rem;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.contact-info, .contact-form {
  flex: 1 1 300px;
  background: #fff8f0;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-info h3, .contact-form h3 {
  color: #BF360C;
  margin-bottom: 1rem;
}
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
  text-align: left;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 2px solid #FF6F00;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.contact-form button {
  background: #FF6F00;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #e65100;
}
