        /* Event Section */
        .event-section {
            margin-bottom: 60px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Location Sections */
        .locations-container {
            padding: 0;
        }

        .location-section {
            margin-bottom: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
        }

        .location-section:last-child {
            margin-bottom: 0;
        }

        .location-header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 15px 25px;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
        }

        .event-header {
            background: linear-gradient(135deg, #f7941d, #e67e22);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .event-title {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .event-date {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .event-description {
            padding: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            background: #f8f9fa;
        }

        .event-description strong {
            color: #f7941d;
        }

        /* Marquee Container */
        .marquee-container {
            padding: 20px 0;
            background: white;
            overflow: hidden;
            position: relative;
        }

        .location-section .marquee-container {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .marquee-wrapper {
            overflow: hidden;
            position: relative;
        }

        .marquee-row {
            display: flex;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-row:last-child {
            margin-bottom: 0;
        }

        .marquee-track {
            display: inline-flex;
            gap: 20px;
            animation: none;
            will-change: transform;
        }

        /* Different speeds for each row */
        .marquee-row:nth-child(1) .marquee-track {
            animation: marqueeScrollRight 60s linear infinite;
        }

        .marquee-row:nth-child(2) .marquee-track {
            animation: marqueeScrollLeft 80s linear infinite;
        }

        .marquee-row:nth-child(3) .marquee-track {
            animation: marqueeScrollRight 70s linear infinite;
        }

        .marquee-image {
            flex-shrink: 0;
            width: 280px;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .marquee-image:hover {
            transform: scale(1.05);
        }

        .marquee-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Smooth infinite scroll animations */
        @keyframes marqueeScrollRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes marqueeScrollLeft {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* Pause animation on hover */
        .marquee-container:hover .marquee-track {
            animation-play-state: paused;
        }

        /* Modal for large image view */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 1200px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #f7941d;
        }

        .modal-caption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            font-size: 1.2rem;
            background: rgba(0,0,0,0.7);
            padding: 15px 30px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        /* Navigation arrows */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(247, 148, 29, 0.8);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-nav:hover {
            background: rgba(247, 148, 29, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-prev {
            left: 30px;
        }

        .modal-next {
            right: 30px;
        }

        /* Container for all events */
        .events-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .event-title {
                font-size: 1.5rem;
            }
            
            .event-date {
                font-size: 1.1rem;
            }
            
            .marquee-image {
                width: 220px;
                height: 140px;
            }
            
            .modal-nav {
                padding: 10px 15px;
                font-size: 16px;
            }
            
            .modal-prev {
                left: 15px;
            }
            
            .modal-next {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .events-container {
                padding: 10px 10px;
            }
            
            .event-header {
                padding: 20px 15px;
            }
            
            .event-description {
                padding: 20px 15px;
                font-size: 1rem;
            }
            
            .marquee-image {
                width: 180px;
                height: 110px;
            }
            
            .marquee-row {
                gap: 15px;
                margin-bottom: 15px;
            }
            
            .marquee-track {
                gap: 15px;
            }
        }