  
        /* CSS Color and Style Definitions */
        :root {
            --dark-bg: #0d0221; /* Dark Purple/Blue Base */
            --royal-blue: #26408B;
            --purple: #724cf9;
            --dark-pink: #e01e5a;
            --red: #ff3333;
            --text-light: #f0f0f0;
            --text-dark: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* Header and Navigation */
        header {
            background: rgba(13, 2, 33, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 1px solid var(--royal-blue);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
        }

        .logo span {
            color: var(--purple);
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--dark-pink);
        }

        /* Shared Page Elements */
        .animated-gradient-text {
            background: linear-gradient(90deg, var(--purple), var(--dark-pink), var(--red), var(--purple));
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-animation 5s ease infinite;
        }
        
        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Styles for the About Page */
        .page-header {
            padding-top: 150px;
            padding-bottom: 80px;
            text-align: center;
            background: linear-gradient(rgba(13, 2, 33, 0.9), rgba(13, 2, 33, 1));
        }

        .page-header h1 {
            font-size: 3.5rem;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 600px;
            margin: 1rem auto 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--text-light);
        }

        /* Story Section */
        .story-section {
            padding: 80px 0;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
        }
        
        .story-content img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .story-text h2 {
            font-size: 2.2rem;
            color: var(--purple);
            margin-bottom: 1rem;
        }
        
        .story-text p {
            margin-bottom: 1rem;
        }

        /* Mission and Vision Section */
        .mission-vision-section {
            padding: 80px 0;
            background-color: #08011a;
        }
        
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }
        
        .mv-card {
            background: rgba(38, 64, 139, 0.2);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(114, 76, 249, 0.3);
            transition: transform 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-5px);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            color: var(--dark-pink);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: #08011a;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid var(--royal-blue);
        }

    