.sponsor-section {
    background: linear-gradient(180deg, #eef3f7, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.sponsor-block {
    margin-bottom: 50px;
}

.sponsor-title {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
    color: #fff;
}

/* Colors */
.platinum {
    background: #555;
}

.gold {
    background: linear-gradient(45deg, #c9a227, #f2d680);
    color: #000;
}

.silver {
    background: linear-gradient(45deg, #9e9e9e, #dcdcdc);
    color: #000;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sponsor-logos.single img {
    max-height: 80px;
}

.sponsor-logos img {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-logos img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sponsor-logos img {
        max-height: 50px;
    }
}