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;
  }
  
  .services-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(to right, #0a0a0a, #191919);
  }
  
  .services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #0a84ff, #4dd0e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .services-hero p {
    font-size: 20px;
    color: #b0b0b0;
  }
  
  .services-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .service {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .service:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.07);
  }
  
  .service h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0a84ff;
  }
  
  .service p {
    font-size: 16px;
    color: #b0b0b0;
  }
  
  .team {
    padding: 80px 20px;
    text-align: center;
  }
  
  .team h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0a84ff;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .team-member {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .team-member h3 {
    margin-bottom: 5px;
    color: #f5f5f5;
    font-size: 18px;
  }
  
  .team-member p {
    color: #b0b0b0;
    font-size: 14px;
  }
  
  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;
  }

  .user-icon {
    background: #0a84ff;
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  