.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
 align-items: center;
}
.breadcrumb{
    text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.contact-info, .contact-form {
  flex: 1 1 48%;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form .btn {
  margin-top: 20px;
  background: #0077b6;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form .btn:hover {
  background: #023e8a;
}
.social-icons a {
  margin-right: 10px;
  font-weight: bold;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.qr-code {
  width: 120px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}