.about-img {
    max-height: 190px;
}

#schedule {
    padding: 80px 0;
    background-color: #111;
    color: #fff;
  }
  
  #schedule h2 {
    /* color: #C62828; /* dark red accent */
    color: #D4AF37;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .schedule-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }
  
  .schedule-card h3 {
    /* color: #C62828; */
    color: #D4AF37;
    margin-bottom: 10px;
  }
  
  .schedule-card .time {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .schedule-card p {
    font-size: 14px;
    color: #ccc;
  }
  
  .schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  