 
        .utsav-section {
            max-width: 1200px;
            margin: 0 auto;
            max-height: 800px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
        }

        .utsav-video-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #810000, #D3AF35);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(129, 0, 0, 0.3);
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: contain;
            cursor: pointer;
        }

        .video-element {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: none;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(211, 175, 53, 0.9);
            border: 3px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .play-button:hover {
            background: rgba(211, 175, 53, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #fff;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .play-button.hidden {
            display: none;
        }

        .text-content {
            flex: 1;
            background: linear-gradient(135deg, #fff, #f8f8f8);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #810000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 400px;
        }

        .heading {
            font-size: 2.2rem;
            font-weight: bold;
            color: #810000;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .heading-accent {
            color: #D3AF35;
        }

        .quote-text {
            font-size: 0.9rem;
            color: #333;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            padding: 20px;
            background: rgba(211, 175, 53, 0.1);
            border-radius: 10px;
            border-left: 4px solid #D3AF35;
            overflow: scroll;
            scrollbar-width:none;
        }

        .quote-text::before {
            content: '"';
            font-size: 3rem;
            color: #D3AF35;
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: serif;
        }

        .quote-text::after {
            content: '"';
            font-size: 3rem;
            color: #D3AF35;
            position: absolute;
            bottom: -20px;
            right: 15px;
            font-family: serif;
        }

        /* Desktop layout */
        @media (min-width: 768px) {
            .utsav-section {
                flex-direction: row;
                align-items: stretch;
            }

            .utsav-video-container {
                flex: 0 0 400px;
            }

            .text-content {
                flex: 1;
                margin-left: 20px;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 767px) {
            .utsav-section {
                padding: 15px;
            }

            .utsav-video-container {
                max-width: 100%;
                height: 300px;
            }

            .text-content {
                height: auto;
                padding: 20px;
            }

            .heading {
                font-size: 1.8rem;
            }

            .quote-text {
                font-size: 1rem;
            }

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-button::after {
                border-left: 15px solid #fff;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }
