section {
  padding: 120px 10% 90px;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.info-box {
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-box h2 {
  margin-bottom: 10px;
  font-family: "DM Serif Display", serif;
}

.map {
  margin-top: 50px;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.map-actions {
  margin-top: 20px;
}

.map .btn {
  width: 100%;
  max-width: 420px;
  padding: 16px 22px;
  border: 0;
  border-radius: 10px;
  background: var(--sage);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.map .btn:hover {
  transform: translateY(-2px);
}

.map .btn:active {
  transform: scale(0.98);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
