/* Event Types Section */
.event-types-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
  }
  
  .event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .event-type-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .event-type-card .type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
  }
  
  .event-type-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .event-type-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
  }
  
  .event-type-card .button {
    width: 100%;
  }
  
  /* Stay Updated Section */
  .stay-updated-section {
    padding: 4rem 0;
    background-color: #0a2240;
    color: #fff;
  }
  
  .stay-updated-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .content-left {
    flex: 1;
  }
  
  .content-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .content-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
  }
  
  .calendar-options h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .upcoming-events-section,
  .past-events-section {
    padding: 3rem 0;
  }
  
  .past-events-section {
    background-color: #f8f9fa;
  }
  
  @media (max-width: 991px) {
    .stay-updated-content {
      flex-direction: column;
    }
  
    .content-left,
    .content-right {
      width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .event-types-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
  }
  
  @media (max-width: 575px) {
    .event-types-grid {
      grid-template-columns: 1fr;
    }
  }
  
  