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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F6FF 100%);
            color: #333333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        .header {
            background: linear-gradient(90deg, #6C4AB6 0%, #8B5FD1 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(108, 74, 182, 0.15);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }

        /* Title Section */
        .title-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 3rem 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(108, 74, 182, 0.1);
            border: 1px solid #E0E0E0;
            position: relative;
            overflow: hidden;
        }

        .title-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #6C4AB6 0%, #B89BE0 100%);
        }

        .page-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6C4AB6 0%, #B89BE0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: #666666;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .content-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(108, 74, 182, 0.1);
            border: 1px solid #E0E0E0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #6C4AB6 0%, #B89BE0 100%);
        }

        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(108, 74, 182, 0.15);
        }

        .card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #6C4AB6;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6C4AB6 0%, #8B5FD1 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .card-content {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }

        .card-content p {
            margin-bottom: 1.2rem;
        }

        .card-content p:last-child {
            margin-bottom: 0;
        }

        /* Highlight boxes */
        .highlight-box {
            background: linear-gradient(135deg, #E8DAFF 0%, #F0E6FF 100%);
            border: 2px solid #B89BE0;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .highlight-box::before {
            content: '💡';
            position: absolute;
            top: -12px;
            left: 20px;
            background: white;
            padding: 0 8px;
            font-size: 1.2rem;
        }

        .highlight-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #6C4AB6;
            margin-bottom: 1rem;
        }

        /* Statistics Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #6C4AB6 0%, #8B5FD1 100%);
            color: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(108, 74, 182, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 40px rgba(108, 74, 182, 0.3);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Team Section */
        .team-section {
            background: linear-gradient(135deg, #F8F6FF 0%, #E8DAFF 100%);
            border-radius: 20px;
            padding: 3rem;
            margin: 2rem 0;
            text-align: center;
        }

        .team-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #6C4AB6;
            margin-bottom: 1.5rem;
        }

        .team-description {
            font-size: 1.1rem;
            color: #666666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: #333333;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer p {
            color: #B89BE0;
            margin-bottom: 0.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .footer-links a {
            color: #B89BE0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .content-card {
                padding: 1.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .main-content {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
