               * {
        margin: 0;
        padding: 0;
    }
        .video-recipe-section {
            background-color: #d1e0d7; /* Light green background */
            padding: 80px 20px;
            font-family: 'Lora', serif;
            display: flex;
            justify-content: center;
        }

        .video-recipe-section .video-recipe-container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 60px;
        }

  
        .video-recipe-section .image-box {
            flex: 1;
            position: relative;
            max-width: 500px;
    
            height: 450px; 
            overflow: hidden;
        }

        .video-recipe-section .image-box img {
            width: 100%;
            height: 100%;
            
            object-fit: cover; 
            display: block;
        }

        /* Image Overlay (White Box) */
        .video-recipe-section .image-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            border: 1px solid #000;
            padding: 25px 20px;
            text-align: center;
            width: 70%;
            box-sizing: border-box;
            z-index: 2;
        }

        .video-recipe-section .overlay-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
            color: #333;
        }

        .video-recipe-section .overlay-main {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.2;
            margin: 0;
            color: #000;
        }

        /* --- Right Side: Content --- */
        .video-recipe-section .content-box {
            flex: 1;
            color: #000;
        }

        .video-recipe-section .video-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .video-recipe-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            margin: 0 0 20px 0;
            line-height: 1.1;
            font-weight: 700;
        }

        .video-recipe-section p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
            color: #333;
        }

        /* --- Buttons --- */
        .video-recipe-section .btn-group {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .video-recipe-section .get-recipe-btn {
            background-color: #000;
            color: #fff;
            padding: 16px 35px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.3s ease;
        }

        .video-recipe-section .get-recipe-btn:hover {
            background-color: #333;
        }

        .video-recipe-section .more-link {
            color: #000;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-bottom: 2px solid #000;
            padding-bottom: 3px;
            transition: 0.3s ease;
        }

        .video-recipe-section .more-link:hover {
            color: #555;
            border-color: #555;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .video-recipe-section .video-recipe-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            .video-recipe-section .image-box {
                width: 100%;
                height: 400px; /* موبائل پر تھوڑی کم ہائٹ */
            }
            .video-recipe-section .btn-group {
                justify-content: center;
            }
            .video-recipe-section h2 {
                font-size: 40px;
            }
        }