 <style>
        /* Maintain consistent branding with main site */
        top-bar {
            background-color: #EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
			padding:70px;
        }
        .navbar {
            background-color:#060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        /* About Hero Section */
        .about-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.1)), 
                        url('https://images.pexels.com/photos/32893789/pexels-photo-32893789.png');
            background-size: cover;
            background-position:center;
            color:white;
            padding: 50px 0;
            text-align:center;
            margin-top:10px;
            height:350px;
        }
        .about-hero h1 {
            font-size:3rem;
            font-weight:700;
            margin:15px;
        }
        
        /* Content Sections */
        .content-section {
            padding: 20px 0;
        }
        .content-section-alt {
            background-color: #f5f9ff;
        }
        .section-image {
            border-radius:8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        .section-image img {
            width: 100%;
            height: 100%;
            object-fit:cover;
        }
        
        /* Mission/Vision Cards */
        .mv-card {
            background-color: #ff66ff;
            border-radius:8px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 4px solid #003366;
        }
		.mission {
            background-color: #ffcc66;
            border-radius:8px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 4px solid #003366;
        }
        .mv-icon {
            font-size: 40px;
            color: #003366;
            margin-bottom:20px;
        }
        
        /* Core Values */
        .value-card {
             background-image: linear-gradient(to top, #f4ff81, #ffeb84, #ffda8e, #ffcc9d, #ffc1aa, #fec2a6, #fdc4a3, #fcc59f, #e8d495, #c6e4a0, #98f2c1, #5ffbf1);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
        }
        .value-card:hover {
            transform: translateY(-10px);
        }
        .value-icon {
            width: 60px;
            height: 60px;
            background-color: #003366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            margin: 0 auto 20px;
        }
        
        /* Leadership Team */
        .team-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 250px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        .team-social {
            position: relative;
            bottom: -40px;
            left: 0;
            right: 0;
            background-color: #003366;
            padding: 10px;
            transition: bottom 0.3s;
            display: flex;
            justify-content: center;
        }
        .team-card:hover .team-social {
            bottom: 0;
        }
        .team-social a {
            color: white;
            margin: 0 10px;
            font-size: 18px;
        }
        
        /* Partners */
        .partner-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            margin-bottom: 30px;
        }
        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: rgba(0, 51, 102, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        /* Consistent with main site */
        footer {
            background-color: #060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom: 5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        .section-title {
            color: #003366;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position:absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 3px;
            background-color: #ff9900;
        }
        .btn-primary {
            background-color: #003366;
            border-color: #003366;
        }
    </style>