 .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.hero-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.schedule-day {
  margin-bottom: 2rem;
}

.class-list ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.day-links {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .day-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .hero-images img {
    max-width: 100%;
    height: auto;
  }
}
