 .section-title {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background-color: green;
      margin-top: 5px;
    }
    .event-card {
      background-color: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin: 10px;
    }
    .event-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .event-date {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: green;
      color: white;
      padding: 2px 10px;
      font-weight: bold;
      font-size: 0.85rem;
      border-radius: 2px;
    }
    .view-all-btn {
      float: right;
      margin-bottom: 20px;
    }