        /* ======================
           ABOUT PAGE STYLES 
           ====================== */
        .about-hero {
            background: linear-gradient(rgba(28, 30, 83, 0.9), rgba(28, 30, 83, 0.9)), 
                        url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px;
            margin-top: 0;
            padding-top: 180px;
            padding-bottom: 80px;
        }
        
        .about-page {
            width: 100%;
            overflow: hidden;
        }

        .about-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-hero p {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* New Sections */
        .vision-section, .values-section, .who-we-are-section {
            padding: 80px 0;
        }

        .vision-section {
            background-color: var(--white);
        }

        .values-section {
            background-color: var(--light-gray);
        }

        .who-we-are-section {
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--dark-blue));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
            text-align: center;
        }

        .vision-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .vision-content p {
            font-size: 20px;
            line-height: 1.8;
            color: var(--dark-gray);
            font-style: italic;
            background: linear-gradient(135deg, var(--light-gray) 0%, #f9f9f9 100%);
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid var(--light-blue);
            text-align: justify;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .value-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 30px;
        }

        /* Specific colors for each value icon with enhanced styling */
        .value-card:nth-child(1) .value-icon {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%); /* Deep Forest Green for Integrity */
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
            color: #e8f5e8; /* Light green tint for icon */
        }

        .value-card:nth-child(1) .value-icon:hover {
            background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
            color: #ffffff; /* Pure white on hover */
        }

        .value-card:nth-child(1) .value-icon i {
            color: inherit;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
        }

        .value-card:nth-child(2) .value-icon {
            background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffc107 100%); /* Vibrant Orange/Gold for Innovation */
            color: #fff3e0; /* Light orange tint for icon */
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }

        .value-card:nth-child(2) .value-icon:hover {
            background: linear-gradient(135deg, #ff8f00 0%, #ffc107 50%, #ffcd39 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
            color: #ffffff; /* Pure white on hover */
        }

        .value-card:nth-child(2) .value-icon i {
            color: inherit;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.4));
        }

        .value-card:nth-child(3) .value-icon {
            background: linear-gradient(135deg, #c62828 0%, #d32f2f 50%, #f44336 100%); /* Bold Red for Impact */
            box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
            color: #ffebee; /* Light red tint for icon */
        }

        .value-card:nth-child(3) .value-icon:hover {
            background: linear-gradient(135deg, #d32f2f 0%, #f44336 50%, #ef5350 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(244, 67, 54, 0.4);
            color: #ffffff; /* Pure white on hover */
        }

        .value-card:nth-child(3) .value-icon i {
            color: inherit;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
        }

        /* Enhanced general icon styling */
        .value-icon {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .value-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-icon:hover::before {
            opacity: 1;
        }

        .value-card h3 {
            font-size: 22px;
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        .who-we-are-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .who-we-are-text {
            flex: 1;
            text-align: justify;
        }

        .who-we-are-text p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 25px;
        }

        .who-we-are-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .who-we-are-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .highlight {
            background: linear-gradient(135deg, var(--light-gray) 0%, #f9f9f9 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--yellow);
            margin-top: 30px;
        }

        .highlight p {
            font-size: 18px;
            line-height: 1.6;
            color: var(--dark-blue);
            margin: 0;
            text-align: justify;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .who-we-are-content {
                flex-direction: column;
            }
            
            .who-we-are-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 100px 20px;
                padding-top: 140px;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .about-hero p {
                font-size: 18px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .vision-content p {
                font-size: 18px;
                padding: 30px 20px;
            }
            
            .section-header h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 28px;
            }
            
            .section-header h2 {
                font-size: 26px;
            }
            
            .value-card {
                padding: 30px 20px;
            }
        }
 
.about-page {
    width: 100%;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.mission-section {
    padding: 80px 0;
    background-color: #f4f6fc;
}

.mission-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 36px;
    color: #1c1e53;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #282938;
    margin-bottom: 30px;
    text-align: justify;
}

.mission-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2405f2;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: #1c1e53;
    font-weight: 500;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1c1e53;
    margin-bottom: 50px;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: #f4f6fc;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 25px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    position: relative;
}

.team-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #2405f2;
}

/* Enhanced styling for professional headshots */
.team-card img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    pointer-events: none;
}

/* Smart positioning for better face visibility */
.team-card img[alt*="Dr. Peter Takunju"] {
    object-position: center 20%;
}

.team-card img[alt*="Sergey Garchenko"] {
    object-position: center 15%;
}

.team-card img[alt*="Claudeth Labinir"] {
    object-position: center 25%;
}

.team-card img[alt*="Pete Allen"] {
    object-position: center 30%;
    object-fit: cover;
}

.team-card img[alt*="Imane Zougagh"] {
    object-position: center 20%;
}

.team-card img[alt*="Roland Ntankeu"] {
    object-position: center -3%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    color: #1c1e53;
    margin-bottom: 8px;
    font-weight: 600;
}

.position {
    color: #2405f2;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
}

.bio {
    color: #282938;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #1c1e53;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fcd980;
}

.values-section {
    padding: 80px 0;
    background-color: #f4f6fc;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1c1e53;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: #2405f2;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #1c1e53;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #282938;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1c1e53 0%, #555477 100%);
    color: white;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fcd980;
    color: #1c1e53;
}

.btn-primary:hover {
    background: #f9d05d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}



@media (max-width: 1024px) {
    .mission-section .container {
        flex-direction: column;
    }
    
    .mission-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .about-hero {
        padding: 100px 20px;
        padding-top: 140px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    
    .mission-content h2, 
    .team-section h2, 
    .values-section h2,
    .about-cta h2 {
        font-size: 28px;
    }
    
    
}