body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo img {
    height: 60px;
  }
  
  .nav {
    display: flex;
    gap: 30px;
  }
  
  .nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav a:hover {
    color: #0a84ff;
  }
  
  .about-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(to right, #0a0a0a, #191919);
  }
  
  .about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #0a84ff, #4dd0e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about-hero p {
    font-size: 20px;
    color: #b0b0b0;
  }
  
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0a84ff;
  }
  
  .about-content p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .about-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #f5f5f5;
  }
  
  footer {
    text-align: center;
    padding: 40px 20px;
    background: #0a0a0a;
    color: #b0b0b0;
    font-size: 14px;
  }
  
  .logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .logo-text span {
    color: white;
    font-weight: 300;
  }