        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #111827;
        }
        
        /* Added 3D effect to logo with transform, shadow and perspective */
        .logo-3d {
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)) 
                    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transform: perspective(800px) rotateX(10deg) rotateY(-5deg);
            transition: transform 0.4s ease, filter 0.4s ease;
        }
        
        .logo-3d:hover {
            transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.05);
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2)) 
                    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
        }
        
        /* Simplified and removed gradients for minimal look */
        .minimal-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .minimal-card:hover {
            border-color: #d1d5db;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        /* Minimalist button styles */
        .minimal-button {
            background: #111827;
            color: #ffffff;
            border: none;
            transition: all 0.2s ease;
        }
        
        .minimal-button:hover {
            background: #1f2937;
            transform: translateY(-1px);
        }
        
        .minimal-button-outline {
            background: transparent;
            color: #111827;
            border: 1px solid #d1d5db;
        }
        
        .minimal-button-outline:hover {
            background: #f9fafb;
            border-color: #9ca3af;
        }
        
        /* Simplified badge */
        .minimal-badge {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: #6b7280;
        }
        
        /* Minimal hero with more breathing room */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            padding-top: 140px;
            padding-bottom: 80px;
        }
        
        /* Hero image styling for A4-like format */
        .hero-image {
            max-width: 500px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* Minimal icon containers */
        .icon-container {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            height: 48px;
            width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 120px 20px 60px;
            }
            
            .hero-image {
                max-width: 100%;
            }
        }
