.map-container {
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-section {
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 0rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.contact-section h4 {
  font-weight: 700;
}

.btn-send {
  background-color: #2b1d0e;
  border: none;
}

.btn-send:hover {
  background-color: #4a3220;
}

.accordion {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: #f5f5f5;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 2s ease;
  padding: 0 15px;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding: 15px;
}

.text-center p a:hover {
  color: #0d6efd;
  transition: all 0.3s ease-in-out;
}

