.about-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10rem 5rem 6rem 5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .mission-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .mission-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .mission-card p {
            color: #666;
            line-height: 1.6;
        }

        .features-section {
            padding: 80px 20px;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            border-radius: 15px;
            background: #f8f9fa;
            transition: background 0.3s ease;
        }

        .feature-item:hover {
            background: #e9ecef;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-content h4 {
            margin: 0 0 10px 0;
            color: #333;
            font-size: 1.1rem;
        }

        .feature-content p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .stats-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin: 0 0 10px 0;
            font-weight: 700;
        }

        .stat-item p {
            font-size: 1.1rem;
            margin: 0;
            opacity: 0.9;
        }

        .team-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .member-avatar  {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: space-around;
            font-size: 4rem;
            color: white;
            
        }
        .member-avatar-photo {
            width: 50%;
            height: 90%;
            object-fit: cover;
        }

        .member-info {
            padding: 30px;
            text-align: center;
        }

        .member-info h4 {
            margin: 0 0 10px 0;
            color: #333;
            font-size: 1.3rem;
        }

        .member-info p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }

        .cta-section {
            padding: 80px 20px;
            background: white;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 20px 10px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-title p1 {
            color: #ddd;
        }
        /* ========================================
           MOBILE RESPONSIVENESS FOR HERO SECTION
           ======================================== */

        /* Mobile Portrait (320px - 480px) */
        @media (max-width: 480px) {
            .about-hero {
                padding: 8rem 1rem 2rem 1rem;
                min-height: 50vh;
            }
            
            .about-hero h1 {
                font-size: 2rem;
                margin-bottom: 15px;
                line-height: 1.2;
            }
            
            .about-hero p {
                font-size: 1rem;
                max-width: 100%;
                margin: 0 auto 20px;
                line-height: 1.5;
                padding: 0 0.5rem;
            }
        }

        /* Mobile Landscape (480px - 600px) */
        @media (min-width: 481px) and (max-width: 600px) {
            .about-hero {
                padding: 7rem 1.5rem 5rem 1.5rem;
                min-height: 65vh;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
                margin-bottom: 18px;
                line-height: 1.3;
            }
            
            .about-hero p {
                font-size: 1.1rem;
                max-width: 90%;
                margin: 0 auto 25px;
                line-height: 1.5;
            }
        }

        /* Small Tablets (600px - 768px) */
        @media (min-width: 601px) and (max-width: 768px) {
            .about-hero {
                padding: 8rem 2rem 5.5rem 2rem;
                min-height: 70vh;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
                margin-bottom: 20px;
                line-height: 1.3;
            }
            
            .about-hero p {
                font-size: 1.2rem;
                max-width: 85%;
                margin: 0 auto 30px;
                line-height: 1.6;
            }
        }

        /* iPad and similar devices (412px - 768px) */
        @media (min-width: 412px) and (max-width: 768px) {
            .about-hero {
                padding: 8rem 1.5rem 5rem 1.5rem;
                min-height: 40vh;
            }
            
            .about-hero h1 {
                font-size: 2.3rem;
            }
            
            .about-hero p {
                font-size: 1.15rem;
                max-width: 80%;
            }
        }

        /* Portrait Tablets (768px - 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            .about-hero {
                padding: 10rem 3rem 6rem 3rem;
                min-height: 38vh;
            }
            
            .about-hero h1 {
                font-size: 3rem;
                margin-bottom: 25px;
            }
            
            .about-hero p {
                font-size: 1.25rem;
                max-width: 70%;
                margin: 0 auto 35px;
            }
        }

        /* Mobile-specific hero enhancements */
        @media (max-width: 768px) {
            .about-hero {
                position: relative;
                overflow: hidden;
            }
            
            .about-hero::before {
                opacity: 0.2;
            }
            
            .about-hero h1 {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            
            .about-hero p {
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            }
        }

        /* General mobile responsiveness */
        @media (max-width: 768px) {
            .mission-grid,
            .features-grid,
            .stats-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }