.auto-style-1 { background: #1d3684 }
.auto-style-2 { color: #fff }
.auto-style-3 { padding: 0 20px }
.auto-style-4 { text-align: center; font-weight: bold; margin-top: 50px }

/* Extracted <style> blocks */
.banner-container {
            max-width: 1200px;
            margin: 30px auto 0 auto;
            border: 5px solid #ccc;
          }

          .banner-container img {
            height: 100%;
            width: 100%;
            object-fit: cover;
          }

          .mainEvent {
            max-width: 1200px;
            margin: 0 auto 30px auto;
            padding: 20px;
          }

          .eventsContainer {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            padding: 20px;
            margin: 20px auto;
          }

          .event {
            box-shadow: 0 3px 10px rgba(100, 100, 100, 0.6);
            border-radius: 10px;
            text-align: center;
            width: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
          }

          .eventImg {
            height: 250px;
          }

          .eventImg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-right-radius: 10px;
            border-top-left-radius: 10px;
            cursor: zoom-in;
          }

          .eventText {
            margin: auto;
          }

          .eventText p {
            font-weight: bold;
            margin: 0;
            padding: 20px;
            text-align: center;
          }

          .eventForm button {
            color: #fff;
            background: #1d3684;
            cursor: pointer;
            text-transform: none;
            letter-spacing: 0;
            border: none;
            font-size: 14px;
            padding: 15px;
            width: 100%;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
          }