.map-section {
  padding: 80px 10%;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.map-content h2 {
  color: #1d4ed8;
  font-size: 28px;
  margin-bottom: 10px;
}

.map-content p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-details {
  margin-top: 20px;
}

.map-details p {
  margin: 6px 0;
  color: #111827;
}

.map-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.map-btn:hover {
  background: #1e40af;
}

.map-embed {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .map-embed {
    height: 300px;
  }
}
