 /* Photo gallery styles */
        .gallery-container {
            position: relative;
            margin-bottom: 20px;
        }

        .gallery-main {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
            margin-bottom: 10px;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .gallery-thumbnails {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .gallery-thumb {
            width: 100px;
            height: 80px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            border: 2px solid transparent;
        }

        .gallery-thumb:hover,
        .gallery-thumb.active {
            opacity: 1;
            border-color: #CC1717;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Sponsors section styles */
        .sponsors-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .sponsor-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .sponsor-item {
            text-align: center;
            width: 180px;
        }
        
        .sponsor-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        
        .sponsor-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .sponsor-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .sponsor-level {
            font-size: 0.9em;
            color: #777;
        }