        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: #000;
            color: #fff;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #000000 0%, #064e3b 50%, #000000 100%);
        }

        .gradient-text {
            background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary {
            background: linear-gradient(90deg, #059669 0%, #10b981 100%);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(90deg, #047857 0%, #059669 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .card {
            background: rgba(6, 78, 59, 0.2);
            border: 2px solid rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: rgba(16, 185, 129, 0.6);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
        }

        .section-title {
            color: #10b981;
            font-weight: 800;
        }

        .mentor-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transform: scale(1.15);
        }

        .hero-heading {
            line-height: 1.5 !important;
        }

        @media (min-width: 640px) {
            .hero-heading {
                line-height: 1.6 !important;
            }
        }

        @media (min-width: 768px) {
            .hero-heading {
                line-height: 1.8 !important;
            }
        }

        