        :root {
            --primary-red: #B22222;
            --secondary-red: #8B0000;
            --pure-white: #ffffff;
            --text-main: #2d3436;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--pure-white);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navbar */
        header {
            padding: 15px 8%;
            display: flex;
            justify-content: center; 
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #f0f0f0;
            height: 150px;
        }

        .logo-group img {
            height: 120px; 
            max-width: 100%;
            object-fit: contain;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 180px 8% 60px; 
            background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1300px;
            width: 100%;
        }

        .hero-content {
            flex: 1.2;
            text-align: left;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--secondary-red);
            font-weight: 900;
        }

        .hero p {
            font-size: 1.15rem;
            color: #636e72;
            margin-bottom: 40px;
            max-width: 550px;
        }

        /* Hero Image Area */
        .hero-image-area {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .image-card {
            position: relative;
            width: 100%;
            max-width: 500px;
            background: white;
            padding: 12px;
            border-radius: 30px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.06);
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }
        
        .image-card:hover {
            transform: translateY(-10px);
        }

        .image-card img {
            width: 100%;
            border-radius: 20px;
            display: block;
        }

        .click-badge {
            position: absolute;
            bottom: -15px;
            right: 30px;
            background: var(--primary-red);
            color: white;
            padding: 12px 25px;
            border-radius: 12px;
            font-weight: 800;
            box-shadow: 0 15px 30px rgba(178, 34, 34, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        /* Video Section */
        .video-container {
            padding: 80px 8%;
            background: var(--pure-white);
            text-align: center;
        }

        .video-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--secondary-red);
            margin-bottom: 40px;
        }

        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            background: #fcfcfc;
            padding: 60px 8%;
            text-align: center;
            border-top: 1px solid #eee;
        }

        .footer-logo {
            height: 80px;
            margin-bottom: 20px;
        }

        /* Mobile Adjustments (Optimized Spacing) */
        @media (max-width: 1024px) {
            header {
                height: 120px;
            }
            .logo-group img {
                height: 90px;
            }
            .hero {
                padding-top: 150px;
                padding-bottom: 40px;
            }
            .hero-container {
                flex-direction: column; 
                text-align: center;
                gap: 20px; /* Reduced gap between text block and image block */
            }
            .hero-content {
                text-align: center;
                margin-bottom: 0;
            }
            .hero h1 {
                font-size: 2.8rem;
                margin-bottom: 15px;
            }
            .hero p {
                margin: 0 auto 15px; /* Reduced bottom margin from 25px to 15px */
                font-size: 1rem;
                padding: 0 10px;
                max-width: 90%;
            }
            .hero-image-area {
                width: 100%;
                max-width: 400px; /* Slightly smaller for tighter layout */
            }
            .click-badge {
                right: 50%;
                transform: translateX(50%);
                bottom: -15px;
                font-size: 0.85rem;
                padding: 8px 18px;
            }
            .video-container {
                padding: 40px 5%;
            }
        }

        @media (max-width: 480px) {
            header {
                height: 100px;
            }
            .logo-group img {
                height: 70px;
            }
            .hero {
                padding-top: 120px;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .video-title h2 {
                font-size: 1.7rem;
            }
            .image-card {
                padding: 6px;
                border-radius: 15px;
            }
        }