.banner-section {
    margin: 2rem 0;
    text-align: center;
}
  
.banner-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
}
  
.banner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
  
.banner-grid a img {
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
  
.banner-grid a:hover img {
    transform: scale(1.3);
}