        /* ==================== GLOBAL STYLES ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f4;
        }
        
        /* ==================== MOBILE-FIRST BASE STYLES ==================== */
        
        /* ==================== HEADER SECTION (MOBILE) ==================== */
        header {
            background-color: #2563eb;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .hamburger {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: 0.3s;
        }
        
        nav ul {
            list-style: none;
            display: none;
            flex-direction: column;
            width: 100%;
            text-align: center;
            padding: 1rem 0;
        }
        
        nav ul.active {
            display: flex;
        }
        
        nav ul li {
            width: 100%;
            padding: 0.5rem 0;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: block;
            padding: 0.5rem;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        nav a.active {
            border-bottom: 2px solid white;
            padding-bottom: 5px;
        }
        
        /* ==================== PAGE HEADER (MOBILE) ==================== */
        .page-header {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .page-header p {
            font-size: 1rem;
        }
        
        /* ==================== MAIN CONTENT AREA (MOBILE) ==================== */
        main {
            padding: 2rem 0;
        }
        
        /* Content box for sections */
                
        .content-box {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        
        /* Paragraph styling */
        .content-box p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        /* ==================== MISSION & VISION SECTION ==================== */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        /* Individual mission/vision card */
        .mv-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .mv-card h3 {
            color: #1e40af;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .mv-card p {
            text-align: justify;
        }
        
        /* ==================== STATISTICS SECTION ==================== */
        /* Display key numbers about the platform */
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2563eb;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* ==================== TEAM SECTION (MOBILE) ==================== */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        /* Individual team member card */
        .team-member {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        /* Avatar placeholder for team member */
        .member-avatar {
            width: 120px;
            height: 120px;
            background-color: #dbeafe;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }
        
        .member-name {
            color: #1e40af;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }
        
        .member-role {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .member-bio {
            color: #666;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* ==================== FOOTER SECTION ==================== */
        footer {
            background-color: #1e293b;
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }
        
        footer p {
            margin-bottom: 0.5rem;
        }
        
        .footer-links {
            margin-top: 1rem;
        }
        
        .footer-links a {
            color: #93c5fd;
            text-decoration: none;
            margin: 0 1rem;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        /* ==================== MEDIA QUERIES FOR LARGER SCREENS ==================== */
        
        /* Tablets and above (768px and up) */
        @media (min-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }
            
            .hamburger {
                display: none;
            }
            
            nav ul {
                display: flex !important;
                flex-direction: row;
                width: auto;
                gap: 2rem;
                padding: 0;
            }
            
            nav ul li {
                width: auto;
                padding: 0;
            }
            
            nav a:hover {
                color: #dbeafe;
                background-color: transparent;
            }
            
            .page-header {
                padding: 2.5rem 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            main {
                padding: 2.5rem 0;
            }
            
            .content-box {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            /* Mission & Vision - 2 columns on tablets */
            .mission-vision {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            /* Stats - 2 rows of 2 on tablets */
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            /* Team - 2 columns on tablets */
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Desktop and above (1024px and up) */
        @media (min-width: 1024px) {
            .page-header {
                padding: 3rem 0;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            main {
                padding: 3rem 0;
            }
            
            .content-box {
                padding: 2.5rem;
                margin-bottom: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .mission-vision {
                margin-bottom: 2rem;
            }
            
            .mv-card {
                padding: 2rem;
            }
            
            .mv-card h3 {
                font-size: 1.5rem;
            }
            
            /* Stats - 4 columns on desktop */
            .stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .stat-card {
                padding: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            /* Team - 3 columns on desktop */
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }