        .hero-video-section {
        min-height: 70vh;
        height: 70vh;
        max-height: 1080px;
    }

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

    .captions-container {
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .caption {
        display: none;
        animation-duration: 1s;
    }

    .caption.active {
        display: block;
    }

    .caption h1 {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    .caption h3 {
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        color: #f8f9fa;
    }

    .caption p {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        max-width: 800px;
        margin: 0 auto;
        color: #e9ecef;
    }

    .caption-navigation {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
    }

    .caption-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid white;
        background: transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .caption-dot:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.2);
    }

    .caption-dot.active {
        background: white;
        transform: scale(1.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-video-section {
            height: 90vh;
            min-height: 600px;
        }
        
        .caption h1 {
            font-size: 2.5rem;
        }
        
        .caption h3 {
            font-size: 1.5rem;
        }
        
        .caption p {
            font-size: 1.1rem;
        }
        
        .caption-navigation {
            bottom: 20px;
        }
    }

    @media (max-width: 576px) {
        .hero-video-section {
            height: 80vh;
            min-height: 500px;
        }
        
        .caption h1 {
            font-size: 2rem;
        }
        
        .caption h3 {
            font-size: 1.2rem;
        }
        
        .caption p {
            font-size: 1rem;
        }
    }