/* Footer Styles */
.sponsor-logos {
  text-align: center;
  margin-bottom: 5rem;
  padding-top: 10vh;
}

.site-footer {
  background: #FF6B02;
background: linear-gradient(0deg, rgba(255, 107, 2, 1) 52%, rgba(15, 15, 15, 0) 100%);
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  .footer-heading {
    color: rgb(15, 15, 15);;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: white;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: rgb(15, 15, 15);;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: white;
  }
  

.link-button, .button {
  display: inline-block;
  background-color: white; 
  color:#FF6B02;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  text-align: center;
}

.link-button:hover, .button:hover {
  background-color: #ff8c00; /* Darker orange */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: white;
}

.link-button:active, .button:active {
  transform: translateY(0);
}
  .small-text {
    font-size: 0.8rem;
    color:rgb(15, 15, 15);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  
  .copyright {
    color: rgb(15, 15, 15);
    font-size: 1rem;
  }
  
  .copyright a {
    color: #ff8c00;
    text-decoration: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .sponsor-logos {
      padding-top: 1vh;
    }
  
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
  }

  