:root {
            --primary-dark: #3a0ca3;
            --primary-light: #4361ee;
            --secondary: #f8f9fa;
            --accent: #ff006e;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: white;
        }
        
        .auth-buttons .btn {
            margin-left: 10px;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
        }
        
        .btn-signup {
            background-color: var(--primary-light);
            border: none;
            color: white;
        }
        
        .btn-signup:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        .btn-login {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .btn-login:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
            text-align: center;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 60px 0;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Content */
        .about-content {
            padding: 60px 0;
        }
        
        .about-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .about-card h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-light);
        }
        
        .about-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .about-card p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .about-card ul {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        
        .about-card ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .highlight-box {
            background-color: rgba(67, 97, 238, 0.1);
            border-left: 4px solid var(--primary-light);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .highlight-box h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .mission-card {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .mission-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .mission-card p {
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .team-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--secondary);
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .member-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-size: cover;
            background-position: center;
            border: 4px solid var(--primary-light);
        }
        
        .member-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .member-position {
            color: var(--primary-light);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-bio {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .social-links a {
            width: 35px;
            height: 35px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-section {
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-box {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-box h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }
        
        .cta-box p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .btn-cta {
            background-color: var(--primary-light);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            margin: 0 10px;
        }
        
        .btn-cta:hover {
            background-color: #3a56d4;
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-cta-outline {
            background-color: transparent;
            color: var(--primary-light);
            border: 2px solid var(--primary-light);
        }
        
        .btn-cta-outline:hover {
            background-color: var(--primary-light);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        .age-badge-footer {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .about-card {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .about-content, .team-section, .stats-section, .cta-section {
                padding: 40px 0;
            }
            
            .about-card {
                padding: 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .btn-cta {
                margin: 5px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .auth-buttons .btn {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .navbar-nav {
                margin-top: 20px;
            }
            
            .about-card h2 {
                font-size: 1.5rem;
            }
            
            .about-card h3 {
                font-size: 1.3rem;
            }
            
            .mission-vision, .team-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
        }

