 .profile-container {
      background: #ffffff0b;
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow:var(--box-shadow);
      max-width: 500px;
      height: 50%;
      text-align: center;
    }

    .profile-pic {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #4a90e2;
      margin-bottom: 20px;
    }

    .profile-name {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .profile-description {
      font-size: 16px;
      line-height: 1.6;
      text-align: left;
    }

    @media (max-width: 600px) {
      .profile-pic {
        width: 120px;
        height: 120px;
      }

      .profile-name {
        font-size: 20px;
      }

      .profile-description {
        font-size: 15px;
      }
    }