* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6; color: #1f2937;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
        }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        
        /* Navbar */
        .navbar {
            background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
            padding: 1rem 0; position: sticky; top: 0; z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo {
            font-size: 1.6rem; font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .nav-links a {
            color: #374151; text-decoration: none; font-weight: 500;
            margin-left: 2rem; transition: color 0.3s;
        }
        .nav-links a:hover { color: #6366f1; }

        /* Progress Bar */
        .progress-section { padding: 2rem 0; text-align: center; }
        .progress-bar {
            display: flex; justify-content: center; align-items: center; gap: 1rem;
        }
        .progress-step { display: flex; flex-direction: column; align-items: center; }
        .progress-circle {
            width: 40px; height: 40px; border-radius: 50%; background: #e5e7eb;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; margin-bottom: 0.5rem; color: #6b7280;
        }
        .progress-circle.completed { background: #10b981; color: white; }
        .progress-line {
            height: 4px; width: 80px; background: linear-gradient(135deg, #10b981, #059669);
        }

        /* Hero */
        .results-hero {
            padding: 4rem 0 2rem; text-align: center;
        }
        .results-title {
            font-size: 2.8rem; font-weight: 800; color: #1e293b; margin-bottom: 1rem;
        }
        .student-profile {
            background: white; padding: 1.5rem 2rem; border-radius: 16px;
            display: inline-block; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .profile-details { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
        .profile-avatar { font-size: 2.5rem; }
        .profile-info h3 { color: #6366f1; margin-bottom: 0.25rem; }

        /* Mentors Grid */
        .mentors-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem; margin: 3rem 0;
        }
        .mentor-card {
            background: white; border-radius: 20px; padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid #f1f5f9; cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .mentor-card:hover {
            transform: translateY(-10px); box-shadow: 0 40px 100px rgba(0,0,0,0.15);
        }
        .mentor-header {
            display: flex; gap: 1.5rem; align-items: center; margin-bottom: 1.5rem;
        }
        .mentor-avatar {
            width: 70px; height: 70px; border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; color: white; flex-shrink: 0;
        }
        .mentor-name { font-size: 1.5rem; font-weight: 700; color: #1e293b; }
        .mentor-education {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white; padding: 0.25rem 0.75rem; border-radius: 20px;
            font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem;
        }
        .mentor-detail {
            display: flex; justify-content: space-between; margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }
        .mentor-detail strong { color: #374151; }
        .mentor-rating {
            color: #fbbf24; font-weight: 700; font-size: 1.1rem;
        }
        .mentor-price {
            font-size: 1.8rem; font-weight: 800; color: #6366f1;
        }
        .mentor-contact {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white; padding: 1rem; border-radius: 12px;
            text-align: center; font-weight: 600; text-decoration: none;
            display: block; margin-top: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mentors-grid { grid-template-columns: 1fr; }
            .profile-details { flex-direction: column; text-align: center; }
            .mentor-header { flex-direction: column; text-align: center; }
        }