body {
            font-family: 'Arial', sans-serif;
            scroll-behavior: smooth;
        }
        .gradient-overlay::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.8) 30%, transparent 100%);
        }
        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: #10B981;
            transition: left 0.3s;
        }
        .menu-item:hover::after {
            left: 0;
        }
        .contact-form {
            background: linear-gradient(145deg, rgba(16,185,129,0.1) 0%, rgba(0,0,0,0.8) 50%);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .form-input {
            background: rgba(255,255,255,0.05) !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
            transition: all 0.3s ease !important;
        }
        .form-input:focus {
            border-color: #10B981 !important;
            box-shadow: 0 0 15px rgba(16,185,129,0.2) !important;
        }
        @media (min-width: 1024px) {
            .hero-text {
                padding-right: 5vw;
            }
            .hero-image {
                margin-left: 5vw;
            }
        }