.sponsor-section {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

.title {
    text-align: center;
    margin: 20px 0;
    font-size: 2em;
    font-weight: bold;
}

.title span {
    display: block;
}

.title .blue {
    color: #19467B;
}

.title .outline {
    color: transparent;
    -webkit-text-stroke: 1px #000;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    padding: 40px;
}

.logo-container div {
    position: relative;
    width: 180px; /* Increased by 50% */
    height: 180px; /* Increased by 50% */
    transform: rotate(calc(var(--rotation, 0deg)));
    transition: transform 0.2s;
}

.logo-container div:hover {
    transform: rotate(0deg) scale(1.1);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .logo-container div {
        width: 135px; /* Increased by 50% */
        height: 135px; /* Increased by 50% */
    }
}