 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Playfair+Display:wght@400;500&amp;display=swap');
        
        :root {
            --il-abt-green: #22c55e;
        }
        
        * {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .il-abt-body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        
        .il-abt-canvas {
            mix-blend-mode: screen;
        }
        
        .il-abt-input {
            background: transparent;
            border: 0;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            color: white;
            font-size: 1.125rem;
            padding: 12px 0;
            width: 100%;
            outline: none;
        }
        
        .il-abt-input:focus {
            border-bottom-color: var(--il-abt-green);
            /* box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); */
        }
        
        .il-abt-label {
            position: absolute;
            top: 12px;
            left: 0;
            font-size: 0.875rem;
            color: #9ca3af;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        
        .il-abt-input:focus + .il-abt-label,
        .il-abt-input:not(:placeholder-shown) + .il-abt-label {
            top: -20px;
            font-size: 0.75rem;
            color: var(--il-abt-green);
        }
        
        .il-abt-textarea-label {
            top: 12px; /* Consistent with input */
        }
        
        .il-abt-textarea:focus + .il-abt-textarea-label,
        .il-abt-textarea:not(:placeholder-shown) + .il-abt-textarea-label {
            top: -20px;
        }
        
        .il-abt-form-container {
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
        }
        
        .il-abt-card {
            position: relative;
            overflow: hidden;
        }
        
        .il-abt-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.6s;
        }
        
        .il-abt-card:hover::before {
            opacity: 1;
        }
        
        .il-abt-3d-card {
            transform-style: preserve-3d;
        }
        
        .il-abt-accent-glow {
            box-shadow: 0 0 40px -10px var(--il-abt-green);
        }
        
        @media (max-width: 768px) {
            .il-abt-hero-title {
                font-size: 3.5rem !important;
            }
            
            .il-abt-form-title {
                font-size: 3rem !important;
            }
            
            .il-abt-locations-title {
                font-size: 3rem !important;
            }
            
            .il-abt-maps-title {
                font-size: 3rem !important;
            }
            
            .il-abt-final-title {
                font-size: 2.5rem !important;
            }
        }