/* Start custom CSS */body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f0f0f0;
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    a{
        text-decoration: none !important;
    }

    .card {
      background: #fff;
      max-width: 360px;
      width: 100%;
      border-radius: 25px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .profile-img {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 24px;
      margin: 0 0 10px;
    }

    p {
      font-size: 18px;
      line-height: 1.6;
      margin: 0;
    }

    .highlight-orange {
      color: orange;
      font-weight: bold;
    }

    .highlight-blue {
      color: #0077cc;
      font-weight: bold;
    }

    .button {
      display: inline-block;
      margin-top: 25px;
      background-color: #4CAF50;
      color: white;
      padding: 14px 20px;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      font-size: 18px;
    }

    .powered-by {
      margin-top: 20px;
      font-size: 18px;
      color: #555;
    }/* End custom CSS */