* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header - Same as main page */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo span {
            color: #666;
            font-weight: 400;
            font-size: 18px;
            -webkit-text-fill-color: #666;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        .mobile-menu::after {
            content: "MENU";
            font-size: 14px;
            font-weight: bold;
        }
        
        /* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Content Section */
        .about-content {
            padding: 80px 0;
            background: white;
        }
        
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .intro-text {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: center;
        }
        
        /* Mission Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .value-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .value-card h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .team-member {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .member-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            font-weight: 700;
        }
        
        .team-member h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: #667eea;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .member-bio {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }
        
        /* Experience Section */
        .experience-section {
            padding: 80px 0;
            background: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 800px;
            margin: 50px auto;
        }
        
        .stat-card {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            color: #666;
        }
        
        /* Why Choose Us Section */
        .why-us-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .reason-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .reason-card h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .reason-card ul {
            list-style: none;
            padding: 0;
        }
        
        .reason-card li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 25px;
        }
        
        .reason-card li::before {
            content: 'OK';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 12px;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background: white;
        }
        
        .partners-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .partners-text {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .partner-item {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            font-weight: 600;
            color: #666;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: white;
            color: #667eea;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer - Same as main page */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* Contact Links Styles */
        .footer-section a[href^="tel:"],
        .footer-section a[href^="mailto:"],
        .footer-section a[href^="https://wa.me/"] {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a[href^="tel:"]:hover,
        .footer-section a[href^="mailto:"]:hover,
        .footer-section a[href^="https://wa.me/"]:hover {
            color: white;
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .values-grid,
            .team-grid,
            .reasons-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
/* Team page additions */
.team-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.member-location {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
}

.member-track {
    color: #888;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 12px;
}

.principles-section {
    padding: 80px 0;
    background: white;
}

.join-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.join-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.join-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.join-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

@media (max-width: 768px) {
    .team-page-grid {
        grid-template-columns: 1fr;
    }
}
