    
 
        /* All CSS goes here */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0b224c;
            --secondary-color: #e44d3a;
            --bg-light: #f4f7f6;
            --text-color: #333;
            --text-light: #666;
            --border-color: #ddd;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            font-family: var(--font-stack);
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            scroll-behavior: smooth;
        }

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

        /* General Typography and Buttons */
        h1, h2, h3 {
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
        }
        h2 {
            font-size: 2rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-color);
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }
        .btn-primary {
            background-color: var(--primary-color);
            color: #fff;
        }
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        .btn-details {
            padding: 8px 15px;
            background-color: #e4eaf0;
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            margin-top: auto;
        }
        .btn-details:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

        /* Header */
        .main-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }
        .logo-image {
            height: 50px;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            list-style: none;
            display: flex;
            margin-right: 20px;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            font-weight: 500;
            padding: 5px;
            position: relative;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
        }
        .nav-toggle {
            display: none;
        }

        /* Page specific styles */
        .page-title-section {
            background-color: var(--primary-color);
            padding: 50px 0;
            color: #fff;
            text-align: center;
        }
        .page-title-section h1 {
            font-size: 2.5rem;
            margin-bottom: 0;
        }
        .about-content {
            padding: 50px 0;
            text-align: center;
        }
        .about-content h2 {
            margin-bottom: 1rem;
        }
        .about-text {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--text-color);
        }
        .about-text p {
            margin-bottom: 1.5rem;
        }
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .mv-card {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .mv-card h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        /* Team section */
        .team-section {
            padding: 50px 0;
            background-color: #fff;
            text-align: center;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .team-member {
            background-color: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        .member-photo {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid var(--primary-color);
        }
        .team-member h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .team-member p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Footer */
        .main-footer {
            background-color: var(--primary-color);
            color: #fff;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            height: 60px;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }
        .footer-about p {
            color: #c9d0d9;
            margin-bottom: 15px;
        }
        .social-links a {
            color: #fff;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links h4, .footer-contact h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links a, .footer-contact p {
            color: #c9d0d9;
            transition: color 0.3s ease;
        }
        .footer-bottom {
            border-top: 1px solid #1a325d;
            padding-top: 20px;
            text-align: center;
            color: #c9d0d9;
        }

        /* Mobile responsive */
        @media (max-width: 900px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
            }
            .main-nav.active {
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .nav-toggle {
                display: block;
            }
        }
