.location-section {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-2) 0%,
    rgba(240, 224, 84, 0.95) 50%,
    var(--primary-2) 100%
  );
  min-height: auto;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extra-bold);
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  text-shadow: 0 0.125rem 0.25rem rgba(10, 10, 10, 0.1);
}

.location-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  color: var(--neutral-dark);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: var(--fw-semibold);
}

.map-container {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  display: block;
}

@media (max-width: 820px) {
  .location-section {
    padding: 4rem 1rem;
  }

  .location-header {
    margin-bottom: 2rem;
  }

  .location-title {
    font-size: var(--fs-h3);
  }

  .location-subtitle {
    font-size: 1rem;
  }

  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .location-section {
    padding: 3rem 1rem;
  }

  .location-title {
    font-size: var(--fs-h3);
  }

  .location-subtitle {
    font-size: 0.95rem;
  }

  .map-container iframe {
    height: 350px;
  }
}
