


header {
      background: #F8A176;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 36px;
    }

    .events-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .event {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 25px;
    }

    .event h2 {
      margin-top: 0;
      color: #F8A176;
      margin-bottom: 1rem;
    }

    .event-date {
      font-size: 14px;
      color: #777;
      margin-bottom: 10px;
    }

    .event-description {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
    }

    .gallery a img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .gallery a img:hover {
      transform: scale(1.05);
    }