
        body {
            font-family: 'Assistant', sans-serif;
        }
        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=1080&fit=crop&q=80');
            background-size: cover;
            background-position: center;
        }
        .gradient-text {
            background: linear-gradient(to right, #fde047, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn-gradient {
            background-image: linear-gradient(to right, #f59e0b 0%, #d97706 51%, #f59e0b 100%);
            transition: 0.5s;
            background-size: 200% auto;
        }
        .btn-gradient:hover {
            background-position: right center;
        }
    

