       body {
            font-family: 'Oxanium', Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        
        nav li {
            margin-left: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #e0e0ff;
        }
        
        .page-header {
            text-align: center;
            padding: 60px 0 40px;
            background: linear-gradient(to right, rgba(74, 28, 107, 0.1), rgba(30, 58, 138, 0.1));
        }
        
        .page-header h1 {
            color: #4a1c6b;
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .page-header p {
            color: #666;
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        .about-content {
            margin: 60px 0;
        }
        
        .section {
            margin-bottom: 60px;
        }
        
        .section h2 {
            color: #4a1c6b;
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
        }
        
        .section p {
            color: #555;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 400;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .member-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
        }
        
        .team-member h3 {
            color: #4a1c6b;
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .team-member p {
            color: #666;
            font-size: 16px;
            font-weight: 400;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #4a1c6b;
        }
        
        .value-card h3 {
            color: #4a1c6b;
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .value-card p {
            color: #666;
            font-size: 16px;
            font-weight: 400;
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: #4a1c6b;
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: #666;
            font-size: 16px;
            font-weight: 600;
        }
        
        .cta-section {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 400;
        }
        
        .cta-button {
            background-color: white;
            color: #4a1c6b;
            border: none;
            padding: 14px 35px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Oxanium', sans-serif;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        footer {
            background-color: #1e1e1e;
            color: white;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            color: #ddd;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 14px;
            font-weight: 400;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            nav ul {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .page-header {
                padding: 40px 0 30px;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .page-header p {
                font-size: 18px;
                padding: 0 15px;
            }
            
            .section h2 {
                font-size: 28px;
            }
            
            .section p {
                font-size: 16px;
            }
            
            .stats {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .stat-item {
                min-width: 200px;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-section h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            nav li {
                margin: 0;
            }
            
            .page-header h1 {
                font-size: 26px;
            }
            
            .team-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }
  