        /* Custom CSS for elements that need more specific styling */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .testimonial-carousel {
            scroll-snap-type: x mandatory;
        }
        
        .testimonial-slide {
            scroll-snap-align: start;
            flex: 0 0 100%;
        }
        
        @media (min-width: 768px) {
            .testimonial-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .testimonial-slide {
                flex: 0 0 33.333%;
            }
        }
        
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox.active {
            display: flex;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        
        .scroll-indicator {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
