<style>
    body { 
      margin: 0; 
      font-family: Arial, sans-serif; 
      background: #fbfbfc; 
      color: #111; 
      line-height: 1.6; 
    }
    header { 
      background: white; 
      border-bottom: 1px solid #eee; 
      padding: 20px; 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      position: sticky; 
      top: 0; 
    }
    .brand { 
      display: flex; 
      gap: 10px; 
      align-items: center; 
    }
    .brand h1 { 
      margin: 0; 
      font-size: 1.2em; 
    }
    nav a { 
      margin-left: 15px; 
      text-decoration: none; 
      color: #333; 
    }
    nav a:hover { 
      text-decoration: underline; 
    }
    .container { 
      max-width: 900px; 
      margin: 20px auto; 
      padding: 0 20px; 
    }
    .hero { 
      display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px; 
    }
    .hero-content h2 { 
      margin: 0 0 10px 0; 
      font-size: 1.8em; 
    }
    .hero-content {
  max-width: 600px;
}

    .btn { 
      display: inline-block; 
      background: white; 
      border: 1px solid #eee; 
      padding: 10px 15px; 
      text-decoration: none; 
      color: #333; 
      border-radius: 5px; 
      margin-right: 10px; 
    }
    .card { 
      background: white; 
      border: 1px solid #eee; 
      padding: 15px; 
      border-radius: 8px; 
      margin-bottom: 15px; 
    }
    footer { 
      text-align: center; 
      color: #999; 
      margin-top: 40px; 
      padding: 20px; 
    }
    .profile { 
      width: 160px; 
      height: 160px; 
      border-radius: 10px; 
      border: 1px solid #eee; 
      object-fit: cover; 
    }
    h3 { 
      margin: 0 0 10px 0; 
    }
    .coming-soon { 
      text-align: center; 
      color: #666; 
      padding: 40px 20px; 
    }
    @media (max-width: 640px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
} 
</style>