    
    /* Video Gallery Section */
    .video-gallery-section {
        padding: 80px 0;
        background-color: white;
    }

    .video-thumbnail {
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .video-thumbnail:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .video-thumbnail img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .video-thumbnail:hover img {
        transform: scale(1.05);
    }

    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: rgba(241, 35, 122, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .video-thumbnail:hover .play-icon {
        background-color: var(--primary-color);
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Photo Gallery Section */
    .photo-gallery-section {
        padding: 80px 0;
        background-color: var(--light-color);
    }

    .gallery-item {
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Quick Highlights Section */
    .highlights-section {
        padding: 60px 0;
        background-color: white;
    }

    .highlight-item {
        padding: 30px;
        text-align: center;
        background-color: var(--light-color);
        margin: 15px 0;
        transition: all 0.3s ease;
    }

    .highlight-item:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .highlight-item h3 {
        margin: 0;
        font-size: 1.5rem;
    }

    .highlight-item:hover h3 {
        color: white;
    }

    /* Lightbox Overrides */
    .lightbox .lb-image {
        border: 10px solid white;
        border-radius: 3px;
    }

    .lightbox .lb-nav a.lb-prev,
    .lightbox .lb-nav a.lb-next {
        opacity: 1;
    }

    .lightbox .lb-close {
        opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 767.98px) {
        .breadcrumb-section {
            text-align: center;
        }
        
        .breadcrumb-title {
            margin-top: 15px;
        }
        
        .gallery-item img {
            height: 150px;
        }
        
        .highlight-item {
            padding: 20px 15px;
        }
        
        .highlight-item h3 {
            font-size: 1.2rem;
        }
    }