body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a1aeb7, #e3ece6);
    color: #1f2937;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .container {
    text-align: center;
    max-width: 600px;
    width: 100%;
  }
  
  .icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #065f46;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #374151;
  }
  
  footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  @media (max-width: 480px) {
    .icon {
      font-size: 3rem;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    p {
      font-size: 0.95rem;
    }
  }
  
  .profile {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #d1fae5, #f3f4f6);
  }
  
  .profile h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #065f46;
  }
  
  .profile p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #374151;
  }
  
  .profile a {
    color: #10b981;
    text-decoration: none;
  }
