    /* Reset & Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    
    body {
      background: linear-gradient(180deg, rgba(87, 248, 245, 1) 0%, rgba(134, 245, 134, 1) 100%);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #000;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    /* Main Container */
    .bio-container {
      width: 90%;
      max-width: 800px;
      padding: 2rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    
    /* Logo */
    .logo {
      width: 120px;
      height: auto;
    }
    
    /* Text Styles */
    .title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .subtitle {
      font-size: 1.3rem;
      font-weight: 400;
      opacity: 0.9;
    }
    
    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
    }
    
    .social-icon {
      font-size: 2rem;
      color: #000;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      transform: scale(1.1);
      color: purple;
    }
    
    /* Action Buttons */
    .action-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 400px;
    }
    
    .action-btn {
      padding: 1rem;
      border-radius: 30px;
      background-color: rgba(217, 217, 217, 1);
      font-size: 1.2rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    
    .action-btn:hover {
      background-color: purple;
      color: white;
      transform: translateY(-2px);
    }
    
    /* Footer */
    .footer {
      margin-top: 1rem;
      font-size: 1.1rem;
      opacity: 0.8;
    }
    
    /* Responsive */
    @media (max-width: 600px) {
      .title {
        font-size: 1.3rem;
      }
      
      .subtitle {
        font-size: 1rem;
      }
      
      .action-btn {
        font-size: 1rem;
      }
      
      .social-icon {
        font-size: 2rem;
      }
    }