
.events-section {
    background-color: #022c22;
   
    color: white;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-bottom: 290px;
  }
  .events-sections {
   
   padding: 60px;
   
  }

  .event-header {
    font-size: 5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 40px;
    padding-left: 10px;
  }
  
 
  .event-card {
    background-color: black;
    color: white;
    max-width: 100%;
    height: 70vh;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .event-card:hover {
    transform: translateY(-8px);
  }
  

  .event-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  

  .event-card p {
    font-size: 2rem;
    margin: 15px 0;
    line-height: 1.6;
  }
  

  .about-links {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
  }
.about-links a {
  color: #FFD700;            /* Makes the link yellow */
  font-weight: 600;          /* Makes the link bold */
  text-decoration: underline; /* Underlines the link */
}

.about-links a:hover {
  text-decoration: underline;
}
 .about-links img{
    color: #FFD700;
    font-weight: 600;
  }
.about-links a img {
  width: 40px;
  transition: transform 0.3s ease;
}

.about-links a img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
  
  .apply-callout {
    margin-left: 20px;
  }
  
