   :root {
            --primary: #1a4b8c;
            --secondary: #f8b739;
            --accent: #2c6e49;
            --light: #f5f5f5;
            --dark: #333;
            --white: #ffffff;
            --bg-color: #ffffff;
            --text-color: #333333;
            --card-bg: #ffffff;
            --sidebar-bg: #f8f9fa;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: var(--transition);
        }

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

        /* Header */
        header {
            background: var(--light);
            color: var(--dark);
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo i {
            font-size: 32px;
            margin-right: 10px;
            color: var(--primary);
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .back-home {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-home:hover {
            color: var(--secondary);
            transform: translateX(-3px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 75, 140, 0.3), rgba(26, 75, 140, 0.8)), url('https://images.pexels.com/photos/5256819/pexels-photo-5256819.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

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

        /* Main Content */
        .main-content {
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-color);
            font-size: 18px;
        }

        /* Leadership Grid */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .leader-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

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

        .leader-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .leader-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
        }

        .leader-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .leader-position {
            font-size: 16px;
            opacity: 0.9;
            color: var(--secondary);
        }

        .leader-content {
            padding: 25px;
        }

        .leader-bio {
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .leader-qualifications {
            list-style: none;
            margin-bottom: 20px;
        }

        .leader-qualifications li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
        }

        .leader-qualifications i {
            color: var(--accent);
            margin-right: 10px;
            margin-top: 4px;
            font-size: 14px;
        }

        .leader-contact {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            border: 2px solid;
            font-size: 14px;
            text-decoration: none;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Department Sections */
        .department-section {
            margin-bottom: 80px;
        }

        .department-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light);
        }

        .dark-mode .department-header {
            border-bottom-color: #3d3d3d;
        }

        .department-header h3 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 10px;
        }

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

        .department-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid var(--primary);
        }

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

        .department-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), #0d3a6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }

        .department-card h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .department-card p {
            color: var(--text-color);
            margin-bottom: 20px;
        }

        /* Board of Trustees */
        .trustees-section {
            background: var(--light);
            padding: 80px 0;
            margin-top: 40px;
        }

        .dark-mode .trustees-section {
            background: #2d2d2d;
        }

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

        .trustee-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .trustee-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #0d3a6b);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 40px;
        }

        .trustee-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .trustee-role {
            font-size: 14px;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .trustee-company {
            font-size: 14px;
            color: var(--secondary);
            font-style: italic;
        }

        /* Mission & Vision */
        .mission-vision {
            background: linear-gradient(135deg, var(--primary), #0d3a6b);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .mission-vision .section-title h2 {
            color: white;
        }
          .mission-vision .section-title p {
            color: white;
        }

        .mission-vision .section-title h2:after {
            background-color: var(--secondary);
        }

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

        .value-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px 20px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .value-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .value-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            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-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--secondary);
            margin-top: 4px;
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #ddd;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .header-actions {
                justify-content: center;
            }

            .hero h2 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .leadership-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 28px;
            }
        }
    