/* Sections styles */
.section-winners,
.section-sponsors {
    padding: 5rem 2rem;
}

.section-winners {
    background-color: white;
}

.section-sponsors {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    color: #4b5563;
    font-size: 1.125rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.benefit-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-image {
    width: 50%;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-content {
    width: 50%;
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "→";
    color: #2563eb;
    position: absolute;
    left: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
    }

    .benefit-image,
    .benefit-content {
        width: 100%;
    }
}