@charset "utf-8";
.sponsors {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
}

.sponsors h2 {
    font-size: 42px;
    color: #c40000;
    margin-bottom: 40px;
    font-weight: bold;
}

.sponsor-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-card {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    border: 2px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.sponsor-card:hover {
    transform: scale(1.05);
}

.sponsor-card img {
    width: 70%;
    height: auto;
    object-fit: contain;
}