<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7209b7;
    --light-shade: #f3e5f9;
    --dark-shade: #4c0677;
    --text-color: #333;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-shade);
    margin-bottom: 1rem;
}

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

.mainMenu {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbarBrand img {
    height: 40px;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

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

.navbarNav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navItem {
    list-style: none;
}

.navLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navLink:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, var(--light-shade) 0%, rgba(114, 9, 183, 0.1) 100%);
    padding: 80px 0;
}

.heroContent {
    text-align: center;
}

.heroTitle {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.heroText {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.heroContent img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gameMechanics {
    padding: 60px 0;
    background: var(--white);
}

.sectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.mechanicsGrid {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.mechanicCard {
    flex: 1;
    min-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 9, 183, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease;
}

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

.mechanicTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mechanicText {
    color: var(--text-color);
}

.gameMechanics img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.levelUp {
    padding: 60px 0;
    background: var(--light-shade);
}

.levelGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.levelCard {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.levelTitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.levelText {
    color: var(--text-color);
}

.achievements {
    padding: 60px 0;
    background: var(--white);
}

.achievementsContent {
    text-align: center;
}

.achievementsText {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.achievementsContent img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.challengeGrowth {
    padding: 60px 0;
    background: var(--light-shade);
}

.challengeGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.challengeCard {
    flex: 1;
    min-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(114, 9, 183, 0.2);
    border-radius: 10px;
    padding: 30px;
}

.challengeTitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.challengeText {
    color: var(--text-color);
}

.leaderboard {
    padding: 60px 0;
    background: var(--white);
}

.leaderboardContent {
    text-align: center;
}

.leaderboardText {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboardContent img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.powerUpSkills {
    padding: 60px 0;
    background: var(--light-shade);
}

.powerUpGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.powerUpCard {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.powerUpTitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.powerUpText {
    color: var(--text-color);
}

.ctaSection {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    color: var(--white);
}

.ctaContent {
    text-align: center;
}

.ctaTitle {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.ctaText {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ctaButton {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ctaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contactSection {
    padding: 60px 0;
    background: var(--white);
}

.contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 9, 183, 0.2);
    border-radius: 10px;
    padding: 40px;
}

.formGroup {
    margin-bottom: 20px;
}

.formControl {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(114, 9, 183, 0.3);
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
}

.formControl:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submitButton {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submitButton:hover {
    background: var(--dark-shade);
}

.siteFooter {
    background: var(--dark-shade);
    color: var(--white);
    padding: 40px 0 20px;
}

.footerContent {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footerColumn {
    flex: 1;
    min-width: 250px;
}

.footerTitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footerText {
    margin-bottom: 0.5rem;
}

.footerLinks {
    list-style: none;
}

.footerLinks li {
    margin-bottom: 0.5rem;
}

.footerLinks a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footerLinks a:hover {
    opacity: 0.8;
}

.footerBottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .navToggleLabel {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .navWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbarNav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navItem {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .navLink {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .navToggle:checked ~ .navWrapper {
        left: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger {
        background: transparent;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .heroTitle {
        font-size: 2rem;
    }

    .sectionTitle {
        font-size: 1.75rem;
    }

    .mechanicsGrid,
    .levelGrid,
    .challengeGrid,
    .powerUpGrid {
        flex-direction: column;
    }

    .footerContent {
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) {
    .navWrapper {
        display: block;
    }

    .navbarNav {
        display: flex;
        gap: 30px;
    }
}

.policyccc {
    margin-right:15%;
    margin-left:15%;
    margin-top:5%;
    margin-bottom:5%;
}

/* About Page Styles */
.aboutHero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    padding: 100px 0;
    color: var(--white);
}

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

.aboutHeroTitle {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.aboutHeroText {
    font-size: 1.25rem;
    line-height: 1.8;
}

.playBasedLearning {
    padding: 80px 0;
    background: var(--white);
}

.playBasedGrid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.playBasedContent {
    flex: 1;
    min-width: 300px;
}

.playBasedText {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.playBasedImage {
    flex: 1;
    min-width: 300px;
}

.playBasedImage img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gameDesignBusiness {
    padding: 80px 0;
    background: var(--light-shade);
}

.gameDesignContent {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gameDesignCard {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gameDesignTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gameDesignText {
    line-height: 1.7;
}

.gameDesignBusiness img {
    width: 100%;
    border-radius: 10px;
    margin-top: 2rem;
}

.achievementPsychology {
    padding: 80px 0;
    background: var(--white);
}

.psychologyContent {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.psychologyText {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.psychologyContent img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engagementPlay {
    padding: 80px 0;
    background: var(--light-shade);
}

.engagementGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.engagementCard {
    flex: 1;
    min-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 9, 183, 0.2);
    padding: 30px;
    border-radius: 10px;
}

.engagementTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.engagementText {
    line-height: 1.7;
}

.seriousGames {
    padding: 80px 0;
    background: var(--white);
}

.seriousGamesContent {
    max-width: 900px;
    margin: 0 auto;
}

.seriousGamesText {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.seriousGamesImages {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.seriousGamesImages img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ourLocation {
    padding: 80px 0;
    background: var(--light-shade);
}

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

.locationText {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.locationDetails {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.locationDetails p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.locationDetails strong {
    color: var(--primary-color);
}

/* Thank You Page Styles */
.thankyouSection {
    padding: 100px 0;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--light-shade) 0%, rgba(114, 9, 183, 0.1) 100%);
}

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

.thankyouIcon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.checkmark {
    width: 50px;
    height: 25px;
    border-left: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    transform: rotate(-45deg);
    animation: checkmark 0.5s ease-out 0.3s both;
}

.thankyouTitle {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thankyouText {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thankyouDetails {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.thankyouSubtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thankyouSteps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.thankyouStep {
    flex: 1;
    min-width: 200px;
}

.stepTitle {
    font-size: 1.25rem;
    color: var(--dark-shade);
    margin-bottom: 1rem;
}

.stepText {
    line-height: 1.6;
}

.thankyouActions {
    margin-top: 3rem;
}

.thankyouButton {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.thankyouButton:hover {
    background: var(--dark-shade);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}

/* Mobile Responsive for New Pages */
@media screen and (max-width: 768px) {
    .aboutHeroTitle,
    .thankyouTitle {
        font-size: 2rem;
    }

    .playBasedGrid,
    .seriousGamesImages {
        flex-direction: column;
    }

    .thankyouSteps {
        flex-direction: column;
    }

    .gameDesignContent,
    .engagementGrid {
        flex-direction: column;
    }
}</pre></body></html>