        .hero {
            position: relative;
            height: calc(100vh - 140px);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.3) grayscale(1);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            width: 100%;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 100px;
        }

        .hero-text h1 {
            font-size: 56px;
            line-height: 1.15;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-text p {
            font-size: 18px;
            color: #cccccc;
            line-height: 1.7;
            max-width: 600px;
        }

        .cta-button {
            padding: 20px 52px;
            background: #ffffff;
            color: #000000;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 30px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }
