* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

body {
  background: #c7c7c7;
}

.schedule-section {
  padding: 80px 10%;
  text-align: center;
}

.schedule-section h1 {
  color: #ff5537;
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  margin-bottom: 50px;
  color: #666;
}

/* GRID */

.schedule-container {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */

.schedule-card {
  background: #ff5537;
  color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.schedule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.schedule-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.schedule-card p {
  font-size: 14px;
  margin: 4px 0;
}

/* BACK BUTTON */

.back-button {
  margin-top: 40px;
}

.back-button a {
  text-decoration: none;
  background: #919191;
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.3s;
}

.back-button a:hover {
  background: #ff5537;
}
