.events-page {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      padding: 20px;
    }

    /* Section header */
    .events-page .section-header {
      position: relative;
      margin-bottom: 20px;
    }
    .events-page .section-header h2 {
      font-size: 28px;
      color: white;
      margin: 0;
      font-weight: 700;
    }
    .events-page .section-line {
      height: 5px;
      background-color: #ccc;
      margin-top: 8px;
    }
    .events-page .section-accent {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 40px;
      height: 6px;
      background-color: #f57c00;
    }

    /* Event container */
    .events-page .event_container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .events-page .events {
      flex: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .events-page .event-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      width: 220px;
      overflow: hidden;
      display: none; /* hidden by default, JS will show */
    }
    .events-page .event-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .events-page .event-content {
      padding: 15px;
    }
    .events-page .event-date {
      font-weight: bold;
      color: #008080;
      font-size: 18px;
    }
    .events-page .event-title {
      margin-top: 5px;
      font-size: 16px;
    }

    /* Pagination directly under cards */
    .events-page .pagination {
      flex-basis: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .events-page .pagination button {
      background: #003366;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
    }
    .events-page .pagination button:hover {
      background: #0055aa;
    }
    .events-page .page-indicator {
      flex-basis: 100%;
      text-align: center;
      margin-top: 8px;
      font-size: 14px;
      color: white;
    }

    /* Sidebar */
    .events-page .sidebar {
      flex: 1;
      background-color: #003366;
      color: white;
      padding: 20px;
      border-radius: 8px;
      min-width: 300px;
    }
    .events-page .sidebar h3 {
      margin-top: 0;
    }
    .events-page .faq-icon {
      font-size: 40px;
      margin-bottom: 10px;
    }
    .events-page .sidebar a {
      color: #00ffff;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .events-page .event_container {
        flex-direction: column;
      }
      .events-page .sidebar {
        margin-top: 20px;
      }
    }