:root {
  --bg: #f2f7ec;
  --panel: #ffffff;
  --accent: #5b8e57;
  --accent-dark: #3f6a3f;
  --muted: #6b7e6b;
  --border: #dff5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Poppins', system-ui, Arial, sans-serif;
  background: linear-gradient(180deg, #f7fff5 0%, #eef7ea 100%);
  color: var(--accent-dark);
}

.schedule-page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 30px 22px 72px;
  position: relative;
}

.decor-top {
  position: absolute;
  right: 16px;
  top: 24px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(91, 142, 87, 0.95), transparent 55%);
  border-radius: 38px 14px 44px 14px;
  opacity: 0.98;
  z-index: 0;
}

.decor-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 120px;
  background: linear-gradient(180deg, rgba(91, 142, 87, 0.18) 0%, transparent 100%);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  margin-bottom: 24px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(91, 142, 87, 0.2);
  box-shadow: 0 16px 40px rgba(72, 107, 78, 0.08);
  text-decoration: none;
  z-index: 1;
}

.back-btn:hover {
  transform: translateY(-1px);
}

.schedule-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.title {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 142, 87, 0.15);
  color: var(--accent-dark);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ef 100%);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 22px 46px rgba(63, 106, 63, 0.1);
  border: 1px solid rgba(145, 191, 139, 0.16);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(63, 106, 63, 0.14);
}

.card .day {
  align-self: center;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 22px rgba(63, 106, 63, 0.18);
  font-size: 0.95rem;
}

.content {
  flex: 1;
}

.content ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.content li {
  padding: 14px 16px 14px 22px;
  position: relative;
  color: var(--accent-dark);
  font-weight: 600;
  background: rgba(91, 142, 87, 0.07);
  border-radius: 18px;
}

.content li:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
}

@media (max-width: 860px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .schedule-page {
    padding: 18px 16px 50px;
  }

  .title {
    font-size: 2.6rem;
  }

  .back-btn {
    width: fit-content;
  }

  .card {
    min-height: auto;
    padding: 18px;
  }

  .content li {
    padding: 12px 14px 12px 20px;
  }
}
