.events-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 50%, #ffffff 100%);
  }
  
  .events-container {
    max-width: 960px;
    margin: auto;
    text-align: center;
    padding: 20px;
  }
  
  .events-title {
    font-size: 2rem;
    color: #336699;
    font-family: 'Segoe UI', Calibri, sans-serif;
    margin-bottom: 30px;
  }
  
  .event-boxes {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .event-box {
    border-left: 6px solid #224477;
    flex: 1 1 280px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    font-family: 'Segoe UI', Calibri, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .event-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  
  .event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .event-date {
    font-size: 0.95rem;
    color: #336699;
    font-weight: 500;
  }
  
  .event-tag {
    background: #e0effa;
    color: #336699;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .event-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #224466;
  }
  
  .event-box p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .event-btn {
    display: inline-block;
    margin-top: auto;
    align-self: start;
    background: #6aa8d6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .event-btn:hover {
    background: #4b92c2;
  }
  
  @media (max-width: 700px) {
    .event-boxes {
      flex-direction: column;
      gap: 20px;
      padding: 0 12px;
    }
    .event-box {
      flex: 1 1 100%;
    }
    .events-title {
      font-size: 1.5rem;
    }
  }
 