  html {
      scroll-behavior: smooth;}

    /* Hero Banner */
    .events-hero {
      position: relative;
      height: 40vh;
      background: url("images/events-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .events-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .events-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.4rem;
    }

    /* Intro */
    .events-intro {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
      text-align: center;
    }
    .events-intro h2 { color: #a80000; }

    /* Event Cards */
    .events-list {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .event-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .event-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .event-content {
      padding: 20px;
      flex: 1;
    }
    .event-content h3 { color: #a80000; margin: 0; }
    .event-content p { margin: 10px 0; }
    .event-content .date-location {
      font-size: 0.9rem;
      color: #555;
    }
    .event-content a {
      display: inline-block;
      margin-top: 10px;
      background: #a80000;
      color: #fff;
      padding: 10px 16px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }
    .event-content a:hover { background: #ff7a00; }

    /* Registration Form */
    .event-form {
      max-width: 600px;
      margin: 40px auto;
      padding: 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .event-form h2 { text-align: center; color: #a80000; }
    .event-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .event-form input, 
    .event-form select {
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    .event-form button {
      background: #a80000;
      color: #fff;
      padding: 14px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    .event-form button:hover { background: #ff7a00; }

    /* Closing CTA */
    .cta-events {
      text-align: center;
      padding: 50px 20px;
      background: #f9f9f9;
    }
    .cta-events h2 { color: #a80000; margin-bottom: 20px; }
    .cta-events a {
      background: #a80000;
      color: #fff;
      padding: 14px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }
    .cta-events a:hover { background: #ff7a00; }
