 <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f4f9;
      color: #333;
    }

    .container {
      max-width: 900px;
      margin: 40px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .profile img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #4CAF50;
    }

    .profile h1 {
      margin: 0;
      font-size: 28px;
      color: #222;
    }

    .profile p {
      margin: 5px 0;
      font-size: 16px;
      color: #555;
    }

    .about {
      margin-top: 20px;
      line-height: 1.7;
      font-size: 16px;
    }

    .socials {
      margin-top: 20px;
    }

    .socials a {
      text-decoration: none;
      margin-right: 15px;
      font-size: 16px;
      color: #4CAF50;
      transition: 0.3s;
    }

    .socials a:hover {
      color: #222;
    }
  </style>