💼 Investor Intake Form

Help us understand your investment goals and experience so we can match you with the perfect opportunities.

👤 Personal Information
💰 Investment Profile
🎯 Investment Preferences
🏦 Financing Preferences
📝 Additional Information
/* Mobile Menu Styles */ .mobile-menu-btn { display: none; flex-direction: column; background: none; border: none; cursor: pointer; padding: 10px; position: absolute; top: 20px; right: 20px; z-index: 1000; } .mobile-menu-btn span { width: 25px; height: 3px; background-color: #333; margin: 3px 0; transition: 0.3s; } /* Mobile responsive styles */ @media (max-width: 768px) { .mobile-menu-btn { display: flex; } .main-nav { display: none; position: absolute; top: 60px; right: 20px; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); border-radius: 5px; padding: 20px; z-index: 999; } .main-nav.active { display: block; } .main-nav ul { flex-direction: column; list-style: none; margin: 0; padding: 0; } .main-nav li { margin: 10px 0; } }